手机相册PhotoSwipe
http://photoswipe.com/ 手机相册PhotoSwipe http://pan.baidu.com/s/1hqoxW8k
606 2015-04-29 去围观jquery img预加载图片 判断图片是否加载完成
如何检查图像是否已经被完全加载进来 $('#theImage').attr('src', 'image.jpg').load(function() { alert('This Image Has Been Loaded'); }); 如何使用jQuery来预加载图像: jQuery.preloadImages = function() { for(vari = 0; i < arguments.length; i…
523 2015-04-28 去围观jquery change()事件
jquery中的change()事件,监听某个表单元素的值是否跟上次不一样,失去焦点的时候检查值,如果跟之前的值不一样就会触发事件。 $('#search_text').change(function(){ //监听#search_text的值变化 alert('不一样我触发我'); //失去焦点时候检查现在输入的值是否…
604 2015-04-25 去围观mousewheel.js监听鼠标滑轮事件
监听 鼠标 滚轮 滑轮 触发事件 兼容IE8以上 演示地址:http://festatic.aliapp.com/js/jquery-mousewheel/ 下载:http://pan.baidu.com/s/1pJp5ZFt 案例: $('#box').bind('mousewheel', function(event, delta, deltaX, deltaY) { console.log(delta…
781 2015-04-25 去围观