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

鼠標(biāo)滾輪改變圖片大小的示例代碼

 更新時(shí)間:2013年11月20日 10:17:27   作者:  
這篇文章主要是對(duì)用鼠標(biāo)滾輪改變圖片大小的示例代碼進(jìn)行了介紹,需要的朋友可以過(guò)來(lái)參考下,希望對(duì)大家有所幫助

鼠標(biāo)滾輪改變圖片大小的示例代碼
<script>
function onWheelZoom(obj){
        zoom = parseFloat(obj.style.zoom);
        tZoom = zoom + (event.wheelDelta>0 ? 0.05 : -0.05);
        if( tZoom > 1 || tZoom<0.1 ) return true;
        obj.style.zoom=tZoom;
        return false;
}
</script>
<a href="javascript:window.close()"><img

src="http://img.jbzj.com/file_images/article/201311/20131120101711.png" style="zoom:1;"

onmousewheel='return onWheelZoom(this)'></a>

相關(guān)文章

最新評(píng)論