2016-10-27 75 views
1

有沒有人知道mousewheel的等效角度是什麼?角度相當於jQuery MouseWheel

基本上,我需要能夠做以下的角,但無法找到它

$(document).bind('mousewheel', function(e) {...

網站我的工作有overflow: hidden就可以了,這意味着沒有太多的信息滾動條和窗口滾動不起作用。我只需要能夠檢測滾動事件來觸發一個函數。 Onscroll只有當實際滾動​​條移動

感謝您的幫助

+0

的可能的複製[跟蹤滾動位置,並通知有關它的其他部件(Angular2)(http://stackoverflow.com/questions/工作36468318/tracking-scroll-position-and-notifying-other-components-about-it-angular2) – rinukkusu

回答

1
@Directive({ 
    selector: '[wheel]' 
}) 
class WheelDirective { 

@HostListener('wheel', ['$event']) 
    Wheel(event) { 
    console.log('wheel'); 
    } 
} 

<div wheel class="wheel">..long text</div> 

.wheel { 
    max-height: 300px; 
    overflow: scroll; 
} 
+1

這是多麼荒謬的語法。谷歌需要停止瘋狂。 –