请问怎么实现滚动监听啊?写了js代码,没反应,想滚动200px,导航条背景改变
<nav class="navbar navbar-default navbar-fixed-top navbar-inverse"role="navigation"id="title">
<script type="text/javascript">
window.onscroll = function(){
var t = document.documentElement.scrollTop || document.body.scrollTop;
var title = document.getElementById("title");
if( t >=300 ) {
title.style.background-color=rgba(0,0,0,1);
}
else {
title.style.background-color=rgba(0,0,0,0);
}
}