Fade HTML5 audio (adjust volume) using jQuery (window).scroll

廉价感情. 提交于 2019-12-06 10:28:57

You can use .scrollTop() to determine how far the user has scrolled:

$(document).ready(function() {
    var audioElm = $('#soundTour').get(0);
    audioElm.play();

    var height = $(document).height() - $(window).height();

    $(window).scroll(function() {
        audioElm.volume = 1 - $(window).scrollTop() / height;
        console.log(audioElm.volume);
    });
});​

Demo: http://jsfiddle.net/8X6Wn/3/

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!