Q
防反跳鼠標滾輪
1
A
回答
3
如何使用setTimeout
來控制事件的觸發 - 如:
$("div").html((new Array(1000)).join(" test")).on("mousewheel DOMMouseScroll MozMousePixelScroll", function()
{
if (!$(this).data('flag'))
{
var self = this;
$(this).data('timeout', window.setTimeout(function()
{
$(self).data('flag', false);
}, 500));
$(this).data('flag', true);
console.log('here');
}
});
相關問題
- 1. as3鼠標滾輪反轉
- 2. SetKeyDelay鼠標滾輪
- 3. Popup - 滾動鼠標滾輪
- 4. 將D3.js從鼠標滾輪變爲控制+鼠標滾輪
- 5. 視差滾動 - 使用鼠標滾輪時跳轉
- 6. c# - 防止鼠標滾輪在面板上滾動
- 7. 防止鼠標滾輪滾動的控件
- 8. CKEditor - 防止在textarea外滾動鼠標滾輪
- 9. LWJGL鼠標滾輪輸入
- 10. jQuery綁定鼠標滾輪
- 11. 鼠標滾輪click&jquery.delegate
- 12. jscrollpane水平鼠標滾輪
- 13. python詛咒鼠標滾輪
- 14. 鼠標滾輪事件
- 15. 鼠標滾輪導航
- 16. Adobe AIR鼠標滾輪
- 17. ContextMenuStrip和鼠標滾輪
- 18. 鼠標滾輪速度
- 19. 滾動面板鼠標滾輪滾動
- 20. 對列表鼠標滾輪水平滾動:反方向
- 21. 輪事件brokes鼠標滾輪的JavaScript
- 22. 鼠標滾輪滾動DIV元件
- 23. 更換鼠標滾輪滾動條?
- 24. 鼠標滾輪滾動水平
- 25. jquery水平滾動鼠標滾輪
- 26. ScrolledComposite不滾動鼠標滾輪
- 27. iScroll 4水平鼠標滾輪滾動
- 28. 鼠標滾輪平滑滾動
- 29. 平滑滾動鼠標滾輪?
- 30. RichTextBox不滾動鼠標滾輪
使用超時去抖它 –