Code Monkey home page Code Monkey logo

Comments (42)

lefex avatar lefex commented on May 24, 2024

CSS

CSS 学习网站

https://css.doyoe.com/

颜色搭配

https://htmlcolorcodes.com/

HTML

https://www.quackit.com/

JavaScript

https://www.javatpoint.com/javascript-tutorial

移动端Wap https://github.com/doyoe/trip

电子书 http://blog.codingplayboy.com/read/

http://blog.codingplayboy.com/aboutme/

https://www.yinchengli.com/category/code/%E5%89%8D%E7%AB%AF/

from dsa.

lefex avatar lefex commented on May 24, 2024

https://www.cnblogs.com/iyangyuan/archive/2013/03/27/2983813.html float 布局的理解

from dsa.

lefex avatar lefex commented on May 24, 2024

https://juejin.im/post/5cdd6947518825693f1ebfcb 左右布局的实现

from dsa.

lefex avatar lefex commented on May 24, 2024

单行文字

overflow: hidden; 
white-space: nowrap; 
text-overflow: ellipsis;

2行文字

-webkit-line-clamp: 2;
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;

超链接

.btn {
           color: black;
           text-decoration: none;
        }

        .btn:hover {
            color: #0055cc;
        }

        .btn:active {
            color: #004ab3;
        }

        .btn:focus {
            outline: thin dotted #333;
        }

from dsa.

lefex avatar lefex commented on May 24, 2024

SCSS、SASS 的作用

CSS的升级版,可以在 CSS 中使用变量,函数等,需要编译器支持,把 SCSS 转换成 CSS。

https://www.sasscss.com/docs/

from dsa.

lefex avatar lefex commented on May 24, 2024

webpack

解决模块组件化问题
https://www.webpackjs.com/

from dsa.

lefex avatar lefex commented on May 24, 2024

React

React 知乎专栏 https://zhuanlan.zhihu.com/leanreact

from dsa.

lefex avatar lefex commented on May 24, 2024

block,inline和inline-block概念和区别

https://www.cnblogs.com/KeithWang/p/3139517.html

from dsa.

lefex avatar lefex commented on May 24, 2024

盒模型

https://www.cnblogs.com/ztfjs/p/qdcss.html

from dsa.

lefex avatar lefex commented on May 24, 2024

电子书集合

https://github.com/threerocks/studyFiles/tree/master/%E5%89%8D%E7%AB%AF

from dsa.

lefex avatar lefex commented on May 24, 2024

博客

https://www.zhangxinxu.com/

http://www.welefen.com/about

http://caibaojian.com/

https://yanhaijing.com/

from dsa.

lefex avatar lefex commented on May 24, 2024

viewport

https://www.cnblogs.com/2050/p/3877280.html
解读 viewport—网页自适应移动 app 神器
https://juejin.im/entry/58e750a02f301e0062367ded

from dsa.

lefex avatar lefex commented on May 24, 2024

布局 demo

https://github.com/Sweet-KK/css-layout

from dsa.

lefex avatar lefex commented on May 24, 2024

980px或1024px

devicePixelRatio dpi

from dsa.

lefex avatar lefex commented on May 24, 2024

Grid 布局

https://www.html.cn/archives/8510
http://www.ruanyifeng.com/blog/2019/03/grid-layout-tutorial.html
http://cssgridgarden.com/
https://github.com/sylvainpolletvillard/postcss-grid-kiss
https://qishaoxuan.github.io/css_tricks/grid/#column-row-gap

from dsa.

lefex avatar lefex commented on May 24, 2024

FlexBox

https://www.w3.org/TR/css-flexbox/
https://css-tricks.com/snippets/css/a-guide-to-flexbox/
https://developer.mozilla.org/en-US/docs/Learn/CSS/CSS_layout/Flexbox
http://www.ruanyifeng.com/blog/2015/07/flex-grammar.html
http://www.ruanyifeng.com/blog/2015/07/flex-examples.html
https://zellwk.com/blog/simple-form-with-flexbox/
https://codepen.io/airen/full/YREoPq/
https://codepen.io/dwatow/pen/Nwmojy
https://segmentfault.com/a/1190000017115802

from dsa.

lefex avatar lefex commented on May 24, 2024

官网

Web 开发技术 MDN https://developer.mozilla.org/zh-CN/docs/Web
W3C https://www.w3.org/2002/03/tutorials.html#webdesign_htmlcss

from dsa.

lefex avatar lefex commented on May 24, 2024

好玩的网站

https://codepen.io/thebabydino/full/qgoBL

from dsa.

lefex avatar lefex commented on May 24, 2024
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        body {
            width: 500px;
            /* 下面这句话竟然能居中 */
            margin: 0 auto;
            background-color: gainsboro;
        }
div {
    color: red;
}
    </style>
</head>
<body>
    <div>
        <p>|__div->p1</p>
        <p>|__div->p2</p>
        <section>
            <p>|_____div->section->p</p>
            <p>|_____div->section->p</p>
            <div>|_____div->section->div</div>
        </section>
    </div>
    <p>|__p1</p>
    <p>|__p2</p>
</body>
</html>

from dsa.

lefex avatar lefex commented on May 24, 2024

DOM

http://css-tricks.com/dom/

It also links to these informative documents:

W3C: What is the Document Object Model? https://www.w3.org/TR/DOM-Level-2-Core/introduction.html
MDN: Introduction - Document Object Model https://developer.mozilla.org/en-US/docs/Web/API/Document_Object_Model/Introduction
Wikipedia: Document Object Model

from dsa.

lefex avatar lefex commented on May 24, 2024

san https://efe.baidu.com/blog/san-a-traditional-mvvm-component-framework/

from dsa.

lefex avatar lefex commented on May 24, 2024

https://github.com/fouber/blog

from dsa.

lefex avatar lefex commented on May 24, 2024

https://tc39.es/ecma262/ ECMA 标准

from dsa.

lefex avatar lefex commented on May 24, 2024

http://v1.iviewui.com/docs/guide/start 一套基于 Vue.js 的高质量 UI 组件库

from dsa.

lefex avatar lefex commented on May 24, 2024

https://developer.mozilla.org/en-US/docs/Web/Events DOM 事件
https://learn.jquery.com/events/introduction-to-events/ jQuery事件

from dsa.

lefex avatar lefex commented on May 24, 2024

元素的 Frame
https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/offsetHeight
HTMLElement
https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement

from dsa.

lefex avatar lefex commented on May 24, 2024

https://w3c.github.io/mini-app-white-paper/#introduction

from dsa.

lefex avatar lefex commented on May 24, 2024

https://demo.cssworld.cn/

from dsa.

lefex avatar lefex commented on May 24, 2024

https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Transitions/Using_CSS_transitions

from dsa.

lefex avatar lefex commented on May 24, 2024

let t1 = 0;
let t2 = 0;
let timer = null; // 定时器
// scroll监听
document.onscroll = function () {
// 需要禁止左右滑动
islider.onMoving = false;
clearTimeout(timer);
timer = setTimeout(function () {
t2 = document.documentElement.scrollTop || document.body.scrollTop;
if (t2 === t1) {
console.log('滚动结束了');
// 需要禁止左右滑动
islider.onMoving = false;
}
}, 500);
t1 = document.documentElement.scrollTop || document.body.scrollTop;
};

from dsa.

lefex avatar lefex commented on May 24, 2024

https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Selectors

from dsa.

lefex avatar lefex commented on May 24, 2024

function logFrame(target) {
let pros = ['offsetTop', 'offsetLeft', 'offsetWidth', 'offsetHeight',
'scrollTop', 'scrollLeft', 'scrollWidth', 'scrollHeight',
'clientTop', 'clientLeft', 'clientWidth', 'clientHeight'
];
logProperties(pros, target);
}

function logProperties(properties, target) {
if (arguments.length < 1) {
return;
}
else if (arguments.length === 1) {
target = arguments[0];
properties = undefined;
}
for (let v in target) {
if (properties) {
if (properties.indexOf(v) > -1) {
console.log(v + ' = ' + target[v]);
}
} else {
console.log(v + ' = ' + target[v]);
}
}
}

from dsa.

lefex avatar lefex commented on May 24, 2024

https://material.io/resources/color/#!/?view.left=0&view.right=0&primary.color=FF5722
色彩
图片

from dsa.

lefex avatar lefex commented on May 24, 2024

https://segmentfault.com/a/1190000020438413?utm_medium=hao.caibaojian.com&utm_source=hao.caibaojian.com&share_user=1030000000178452

js是如何执行的

from dsa.

lefex avatar lefex commented on May 24, 2024

CSS specificity
https://dev.to/emmawedekind/css-specificity-1kca

https://stuffandnonsense.co.uk/archives/css_specificity_wars.html

css-specificity-wars

https://cssspecificity.com/

https://css-tricks.com/specifics-on-css-specificity/

from dsa.

lefex avatar lefex commented on May 24, 2024

https://underscorejs.org/

from dsa.

lefex avatar lefex commented on May 24, 2024

iOS浏览器 webkit 源码
https://trac.webkit.org/browser#webkit/releases/Apple/iOS%2010.0/WebKit2/Platform

Android 浏览器是基于 chromium
http://www.chromium.org/Home

from dsa.

lefex avatar lefex commented on May 24, 2024

https://github.com/fouber/blog
前端构建

from dsa.

lefex avatar lefex commented on May 24, 2024

http://wuduoyi.com/note/what-happen-when-browser-loading-the-page/
浏览器加载过程

from dsa.

lefex avatar lefex commented on May 24, 2024

https://uniapp.dcloud.io/
一套代码跑到任意小程序

from dsa.

lefex avatar lefex commented on May 24, 2024

https://hao.uisdc.com/ 设计导航网站

from dsa.

lefex avatar lefex commented on May 24, 2024

一个牛逼的东西
http://mockjs.com/

from dsa.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.