首页 > Web开发 > 详细

前端---css3优化

时间:2020-01-20 18:40:40      阅读:60      评论:0      收藏:0      [点我收藏+]

一.视差滚动(经过优化后的代码)

.front::before {
    content: ‘‘;
    position: fixed; // 代替background-attachment
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: white;
    background: url(/img/front/mm.jpg) no-repeat center center;
    background-size: cover;
    will-change: transform; // 创建新的渲染层
    z-index: -1;
  }

  

前端---css3优化

原文:https://www.cnblogs.com/qdwz/p/12218717.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!