bootstrap框架返回顶部效果和样式
本博客前端采用的是bootstrap框架支持的,刚上线没有返回顶部的功能效果,网上查了下整理如下代码,仅供大家参考
加载 jquery-scollup 文件
<script src="http://cdn.bootcss.com/scrollup/2.4.0/jquery.scrollUp.min.js">
js代码内容
$(function () { $.scrollUp({ scrollName:"scrollUp", topDistance:"300", topSpeed:300, animation:"fade", animationInSpeed:200, animationOutSpeed:200, scrollText:'<i class="fa fa-angle-up"></i>', activeOverlay:!1 }); });
css内容
/*返回顶部样式*/ #scrollUp { background-color: #777; color: #eee; font-size: 40px; line-height: 1; text-align: center; text-decoration: none; bottom: 20px; right: 20px; overflow: hidden; width: 46px; height: 46px; border: none; opacity: .8; } #scrollUp:hover{background-color:#333} @media screen and (min-width:992px){#scrollUp{bottom:80px}}
自此样式实现
本文为原创文章,转载无需和我联系,但请注明来自:http://www.baiyongj.com/news/473.html