任何人都知道如何在页面底部创建一个永久栏?例如,请查看http://www.italylettings.com/
答案 0 :(得分:1)
只需在DIV上使用CSS而不需要JavaScript:
#bottom-bar {
position: fixed;
bottom: 0px;
left: 0px;
width: 100%;
height: 50px;
}
<强>更新强>
mootools淡出的简单方法是使用fade
函数:
$("bottom-bar").fade('toggle');