码迷,mamicode.com
首页 > 其他好文 > 详细

悬浮按钮

时间:2017-10-15 22:26:42      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:radius   class   text   ack   index   样式   family   scroll   qq群   

作者QQ:1095737364    QQ群:123300273     欢迎加入!

 1.css样式 :

<style>
#topBtn {
    position: fixed;
    bottom: 380px;
    right: 50px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #FFF;
    z-index: 999;
    background: #FF5722;
    cursor: pointer;
    border-radius: 30px;
    box-shadow: 0px 0px 20px #000;
}
</style>

 2.js代码:

<script type="text/javascript">
    $(function () {
        $("#topBtn").click(function () {
            $("html,body").animate({scrollTop: $("body").offset().top}, 600);
        });
    });
</script>

 3.html 代码:

 <div id="topBtn">置顶</div>

 

 

悬浮按钮

标签:radius   class   text   ack   index   样式   family   scroll   qq群   

原文地址:http://www.cnblogs.com/yysbolg/p/7647200.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!