欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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

 更新時(shí)間:2011年10月27日 23:25:48   作者:  
基于jquery的滾動(dòng)鼠標(biāo)放大縮小圖片效果,需要的朋友可以參考下。
今天要出個(gè)鼠標(biāo)滾動(dòng)放大縮小圖片的功能,看似很簡(jiǎn)單,從網(wǎng)上一搜,出現(xiàn)的都是onmousewheel的例子,全部只支持IE瀏覽器,結(jié)果查出火狐有對(duì)應(yīng)的DOMMouseScroll來(lái)處理這個(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)滾動(dòng)事件
//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)滾動(dòng)事件

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

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

相關(guān)文章

最新評(píng)論