jq廣告浮動框用啥?
隨滾動而滾動,css就可以實現(xiàn),也就是固定在屏幕固定位置,用position:fixed;即可,關(guān)閉按鈕可以用document.getElementById('').style.display='none';即可,如
<divstyle="width:500px;height:200px;background-color:#F00;position:fixed;left:100px;top:200px;"id="test">
<buttononclick="document.getElementById('test').style.display='none';">關(guān)閉</button>
</div>
其中l(wèi)eft和top都是相對于屏幕的位置