2

我正在尝试制作一个使用 html5 音频在后台循环声音文件并在用户向下滚动时淡出的页面。理想情况下,它也会随着用户向上滚动而淡入。我知道我很遥远,但这是我正在使用的:

html:

 <html lang="en-US">
<head>
    <style>article {height:1000px; background:yellow;}</style>
</head>
<body>

<article>
    <audio loop id="soundTour" src="longdong.wav"></audio>
</article>


<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js'></script>

</body>
</html>

jQuery:

$(document).ready(function() {


var audioElm = $('#soundTour').get(0);
audioElm.play();
audioElm.volume=1;


$(window).scroll(function () { 
        //audioElm.volume=.1;
        var value = $(window).scroll("value");
        audioElm.volume = (value / 100);
});  
});

http://jsfiddle.net/8X6Wn/

有没有人想对这个进行一番尝试?谢谢!!!

4

1 回答 1

5

您可以使用.scrollTop()来确定用户滚动了多远:

$(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);
    });
});​

演示:http: //jsfiddle.net/8X6Wn/3/

于 2012-12-20T04:10:58.650 回答