2015年12月11日

jQuery Easing 动画效果扩展 ,全屏滚动案例

摘要: http://www.helloweba.com/view-blog-212.html$(element).animate({height:500,width:600},{easing:'easeInOutQuad',duration:500,complete:callback});参考http:/... 阅读全文

posted @ 2015-12-11 18:45 防空洞123 阅读(304) 评论(0) 推荐(0) 编辑

jQuery 鼠标滚轮插件应用 mousewheel

摘要: jQueryMousewheel Plugin,用于添加跨浏览器的鼠标滚轮支持。mousewheel事件的处理函数有一点小小的变化,它除了第一个参数event 外,还接收到第二个参数delta。通过参数delta可以获取鼠标滚轮的方向和速度。如果delta的值是负的即-1,那么滚轮就是向下滚动,正的... 阅读全文

posted @ 2015-12-11 18:41 防空洞123 阅读(198) 评论(0) 推荐(0) 编辑

$(document).height()与$(window).height()区别

摘要: $(window).height()代表了当前可见区域的大小,而$(document).height()则代表了整个文档的高度,可视具体情况使用.注意当浏览器窗口大小改变时(如最大化或拉大窗口后) $(window).height() 随之改变,但是$(document).height()是不变的。... 阅读全文

posted @ 2015-12-11 17:44 防空洞123 阅读(1978) 评论(0) 推荐(0) 编辑

导航