我有一个固定位置的文章元素,我想在滚动页面时淡出。我在 Javascript 方面不是很有经验,但经过一些研究,我整理了这个脚本;
<script type="text/javascript">
//when the DOM has loaded
$(document).ready(function() {
//attach some code to the scroll event of the window object
//or whatever element(s) see http://docs.jquery.com/Selectors
$(window).scroll(function () {
var height = $('body').height();
var scrollTop = $('body').scrollTop();
var opacity = 1;
// do some math here, by placing some condition or formula
if(scrollTop > 400) {
opacity = 0.5;
}
//set the opacity of div id="someDivId"
$('#instructions').css('0', opacity);
});
});
</script>
这似乎不起作用,并且该元素在 scolling 时保持完全不透明(该网站在此处http://edharrisondesign.com/pocketpictograms/)。
任何想法为什么?提前致谢。