亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

基于jquery的滾動鼠標(biāo)放大縮小圖片效果

 更新時(shí)間:2011年10月27日 23:25:48   作者:  
基于jquery的滾動鼠標(biāo)放大縮小圖片效果,需要的朋友可以參考下。
今天要出個(gè)鼠標(biāo)滾動放大縮小圖片的功能,看似很簡單,從網(wǎng)上一搜,出現(xiàn)的都是onmousewheel的例子,全部只支持IE瀏覽器,結(jié)果查出火狐有對應(yīng)的DOMMouseScroll來處理這個(gè)功能,代碼如下,并加上注意的注釋項(xiàng):
復(fù)制代碼 代碼如下:

$(function(){
$(".body img").each(function(){
if($.browser.msie){
$(this).bind("mousewheel",function(e){
var e=e||event,v=e.wheelDelta||e.detail;
if(v>0)
resizeImg(this,false);//放大圖片唄
else
resizeImg(this,true);//縮小圖片嘍
window.event.returnValue = false;//去掉瀏覽器默認(rèn)滾動事件
//e.stopPropagation();
return false;
})
}else{
$(this).bind("DOMMouseScroll",function(event){
if(event.detail<0)
resizeImg(this,false);
else
resizeImg(this,true);
event.preventDefault()//去掉瀏覽器默認(rèn)滾動事件

//event.stopPropagation(); })
}
});
function resizeImg(node,isSmall){
if(!isSmall){
$(node).height($(node).height()*1.2);
}else
{
$(node).height($(node).height()*0.8);
}
}
});

本文的demo請點(diǎn)擊這里:滾動鼠標(biāo)放大縮小圖片效果

相關(guān)文章

最新評論