js侧边固定悬浮浮动效果
效果是 :滚动条滚动到一定程度后左侧栏才会触发开始随着浮动,左侧能滚动的范围也就是右侧高度,如: //内页侧边栏固定悬浮 function side_absolute(left,right,wrap){ var about_l_height=left.outerHeight(true); var about_con=right.outerHeight(t…
658 2016-06-16 去围观css控制文本文字左右两边对齐--text-align:justify
css 两边 两端 对齐 .test1 { text-align:justify; text-justify:distribute-all-lines;/*ie6-8*/ text-align-last:justify;/* ie9*/ -moz-text-align-last:justify;/*ff*/ -webkit-text-align-last:justify;/*chrome 20+*/ } 使用前: …
624 2016-06-16 去围观jQuery 3.0正式发布
对浏览器的支持程度: Internet Explorer: 9+ Chrome, Edge, Firefox, Safari: Current and Current - 1 Opera: Current Safari Mobile iOS: 7+ Android 4.0+ 如果想要兼容以前老方法请加载:jquery-migrate-1.4.1.min.js 具体升级:https://jquery.com/u…
570 2016-06-12 去围观jQuery的domready实现代码
function myReady(fn){ //对于现代浏览器,对DOMContentLoaded事件的处理采用标准的事件绑定方式 if ( document.addEventListener ) { document.addEventListener("DOMContentLoaded", fn, false); } else { IEContentLoaded(fn); } //IE模拟D…
518 2016-06-12 去围观GASP | TimelineMax时间轴
TimelineMax .add() //在时间末尾添加一个动画、标签、回调 //add a tween to the end of the timeline tl.add( TweenLite.to(element, 2, {left:100}) ); //add a callback at 1.5 seconds tl.add(func, 1.5); //add a label 2 seconds after the en…
1,104 2016-06-12 去围观