当您在Tumblr上启用无限滚动时,当您将鼠标放在仪表板底部时,页脚就会淡入。我如何在我的网站上使用该技术?
答案 0 :(得分:3)
如果使用jQuery库,那将非常简单。
让我们假设您有以下具有自定义样式的id =“footer”的页脚div
<div id="footer" style="position:fixed;bottom:0px;left:0px;margin:0px;width:100%;opacity:0.001">
<center>StackOverflow | About US | Privacy | Blah Blah Blah | Something </center>
</div>
然后添加以下java脚本
<script type="text/javascript">
$(document).ready(function() {
$('#footer').hover(
function(){
$(this).stop().fadeTo('slow',1);
},
function(){
$(this).stop().fadeTo('slow',0.001);
});
});
</script>
确保您已包含jQuery库,如果不是只是将以下行添加到Head部分:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>