摘要:
<script> !function () { function c () { var dom = document.getElementById('loadJs'); var createDom = document.createElement('script'); dom && document 阅读全文
摘要:
http://lbsyun.baidu.com/jsdemo.htm#c1_10 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 5 阅读全文
摘要:
选择器类型 下面,选择器类型的优先级是递增的: 1、 类型选择器 (例如 h1) 伪元素 (例如 ::before) 类型选择器 (例如 h1) 伪元素 (例如 ::before) 2、 类选择器 (例如 .example) 属性选择器 (例如 [type=“radio”]) 伪类 (:hover) 阅读全文
摘要:
1 <!DOCTYPE html> 2 3 <head> 4 <meta charset="UTF-8"> 5 <title>404</title> 6 <meta content="telephone=no" name="format-detection"> 7 <meta name="viewport" content="width=device-width, initial-scale=1, 阅读全文
摘要:
就是这个开关,代码是从weui上拷贝出来的。 至于weui自己百度吧 ^_^~开关代码如下: Document 阅读全文
摘要:
一、$.fn.name 指 jquery 的命名空间加上fn的方法和属性会对每一个jquery实例都有效 例: $.fn.abc(); 是对Jquery 扩展了一个abc方法,那么后面的每一个jquery实例都可以引用这个方法 如: $('div').abc(); jquery为开发插件... 阅读全文
摘要:
一、HTML5 新DOM事件获得设备物理方向及运动的信息:陀螺仪、罗盘、加速计。 DOM事件 1、deviceorientation //物理方向 2、devicemotion //加速信息 3、compassneedscalibration //通知web站点使用罗盘信息校准 监听事件:... 阅读全文
摘要:
一、box-shadow 给元素增加周边阴影 语法 box-shadow:[inset] x-offset y-offset blur-radius spread-radius color; 分别对应的是 投影方式:[inset] 内阴影 默认:外阴影 X轴偏移:x-offset 正数往右 ... 阅读全文