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

----关于posotion的

时间:2018-10-13 15:41:36      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:技术   Fix   http   png   滑动   back   sticky   image   family   

sticky

出现在正常流当中,不能设置定位,随页面滚动

(sticky = relative + fixed)

 

fixed

不出现在正常流当中,能设置定位,随页面滚动

 

eg:

html:

  <p>
    <div class="box" id="one">One</div>
    <div class="box" id="two1">Two1</div>
    <div class="box" id="three">Three</div>
    <div class="box" id="four">Four</div><br><br><br><br>
  </p><p>
    <div class="box" id="one">One</div>
    <div class="box" id="two2">Two2</div>
    <div class="box" id="three">Three</div>
    <div class="box" id="four">Four</div><br><br><br><br>
  </p>

 

css:

  #two2 {
    position: sticky;
    top: 20px;
    left: 20px;
    background: #168989;
    }


  #two1 {
    position: fixed;
    top: 20px;
    left: 20px;
    background: #452589;
    }

效果如图:

(Two1为sticky,Two2位fixed)

技术分享图片

当页面向下滑动时,效果如下:

技术分享图片

 

----关于posotion的

标签:技术   Fix   http   png   滑动   back   sticky   image   family   

原文地址:https://www.cnblogs.com/player-yenney/p/9782925.html

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