0
我想要嘗試的是獲取div #box
在其父元素#wrapper
中上下移動/取決於移動mousewheel
的方式。在父div內的移動/滾動元素
,以便它知道什麼時候mousewheel
被向上或向下移動基礎上,delta
我知道了,但我不明白的是它是如何工作得到#box
在實際像素動態移動(不是速度)當鼠標滾輪向上或向下移動時的數量。
我正在使用jQuery和這個鼠標滾輪插件http://brandonaaron.net/code/mousewheel/docs。
我設置這個例子了http://jsfiddle.net/sSrvv/
JS
$(document).ready(function(){
$('#box').bind('mousewheel' , function(event,delta){
var pixelVal = 0;
if (delta > 0) {
// mousewheel going up
// pixelVal = amount of pixel #box should move;
$('#box').css('WebkitTransform' , 'translate(0px, -'+ pixelVal +'px)');
}else {
// mousewheel going down
// pixelVal = amount of pixel #box should move;
$('#box').css('WebkitTransform' , 'translate(0px, '+ pixelVal +'px)');
};
});
});
CSS
#data {
position: fixed;
top: 10px;
right: 10px;
border: 1px solid #333;
padding: 10px;
}
#wrapper {
position: fixed;
top: 0;
left: 0;
width: 300px;
height: 600px;
background-color: #ffff00;
}
#box {
position: relative;
width: 100%;
height: 300px;
background-color: #000;
}
HTML
<div id="data">put data here</div>
<div id="wrapper">
<div id="box"></div>
</div>
感謝上百萬的重新工作。我認爲三角洲不工作,因爲我正在使用我在js小提琴中引用的插件。有一個問題,三角洲如何確定位置? – user1563944