-4

要素内のスクロール (要素の上にカーソルを置いてからスクロール) によってトリガーされる jQuery のサイズ変更可能な (DOM) 要素を実装することは可能ですか?

http://jqueryui.com/resizable/#default

4

1 に答える 1

1

もちろん、実装は創造性の問題です。これが私の簡単な解決策です。正確なニーズに合うように少し作業する必要があります。

var resizing = false;
var lastScroll = 0;
$("#resizable").hover(function(){ resizing = true; }, function(){ resizing = false; })
.scroll(function(e){
   var currentScroll = $(this).scrollTop();
   if(tempScrollTop < currentScrollTop) {
      // the user is scrolling down
      $(this).height("+=10"); // or whatever
   }
   lastScroll = currentScroll;
});
于 2012-11-27T15:05:15.687 に答える