博客列表 >css基础-定位,模态框

css基础-定位,模态框

CY明月归
CY明月归原创
2022年03月24日 15:13:20453浏览

作业内容:

  1. 定位
  2. 模态框

定位:

  1. /* 定位:
  2. 默认静态定位, static
  3. */
  4. h1,h2{
  5. border: 1px solid ;
  6. }
  7. /*相对定位: 依然在文档流,受文档流控制,只是相对于!!自身原本的位置!!发生变化, relative*/
  8. /* h2{
  9. position: relative;
  10. top: 30px;
  11. }
  12. /*绝对定位: 已经在不受文档流控制,相对于定位父级发生位置偏移, absolute*/
  13. h2{
  14. position: absolute;
  15. top: 30px;
  16. }
  17. /*固定定位: 不受文档流控制,总是相对于body, fixed */
  18. h2{
  19. position: fixed;
  20. top: 30px;
  21. left: 200px;
  22. }

模态框:(只贴importent代码)

  1. header{/*弹性布局(display:flex;)否则登录按钮会出现在第二行*/
  2. display: flex;
  3. ...
  4. }
  5. button .login{/*em单位复习*/
  6. margin-left: auto;
  7. height: 2em;
  8. ...
  9. }
  10. .modal{/*隐藏,通过js事件控制*/
  11. display: none;
  12. }
  13. .reg{/*固定布局*/
  14. position: fixed;
  15. ...
  16. }
  17. .mo{/*alpha 透明度(a)取值 0~1 之间, 代表透明度*/
  18. background-color: rgba(0, 0, 0,0.5);
  19. }

添加关闭按钮与动画-优化版本

  1. <span class="close">x</span>
  2. .close:hover,
  3. .close:focus {
  4. color: #000;
  5. text-decoration: none;
  6. cursor: pointer;
  7. }

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议