首页
归档
笔记
树洞
搜索
友言

文章详情

Interesting People Record Interesting.

/ CSS / 文章详情

bootstrap框架返回顶部效果和样式

Sonder
2020-04-06
902字
2分钟
浏览 (3.2k)

加载 jquery-scollup 文件

复制代码
<script src="http://cdn.bootcss.com/scrollup/2.4.0/jquery.scrollUp.min.js"></script>

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

下一篇 / nginx配置http访问指向到https

🎯 相关文章

💡 推荐文章

🕵️‍♂️ 评论 (0)