mousebird和jQuery中的draggable

时间:2011-05-24 09:23:27

标签: jquery jquery-ui draggable mousewheel

抱歉我的英文。

在可拖动元素上滚动鼠标滚轮以进行操作时需要什么?

如果向上,则元素向上移动,反之亦然

HTML

<div id='container'>
  <div class='move'><div>
</div>

样式

<style>
   #container{height:200px;width: 200px}
   .move{height:10px;width:10px}
</style>

JS

$('.move').draggable({
  axis: 'y',
  containment: 'parent'
})

$('#container').bind('mousewheel', function(event, delta) {
   //call drag function
});

0 个答案:

没有答案