zoukankan      html  css  js  c++  java
  • 如何实现1920bannerai网页中居中以及实现1920bannerai网页中切换的效果

    #banner{
        /*宽度,浏览器的100%*/
         100%;
        /*原则上,高度=图片高度*/
        height: 500px;
        position: relative;
        overflow: hidden;
       }
       #banner img{
        /*宽度,图片的实际高度*/
         1920px;
        /*高度,充满父容器*/
        height: 500px;
        /*使用定位,让图片在父容器绝对居中*/
        position: absolute;
        left: 50%;
        margin-left: -960px;
       }

    *{
        margin: 0px;
        padding: 0px;
       }
       
       #banner{
         100%;
        height: 500px;
        overflow: hidden;
       }
       
       #banner_in{
         7680px;
        height: 500px;
        position: relative;
        -webkit-animation: banner 8s ease infinite;
       }
       
       @-webkit-keyframes banner{
        /*0%{
         left:0px
        }
        
        33%{
         left: -1920px;
        }
        
        66%{
         left: -3840px;
        }
        
        100%{
         left: -5760px;
        }*/
        
        0%{
         left: 0px;
        }
        10%{
         left: 0px;
        }
        
        30%{
         left: -1920px;
        }
        40%{
         left: -1920px;
        }
        
        
        70%{
         left: -3840px;
        }
        80%{
         left: -3840px;
        }
        
        100%{
         left: -5760px;
        }
       }
       <body>
      
      <div id="banner">
       <div id="banner_in">
        <img src="../img/banner1.png" /><!--
        --><img src="../img/banner2.png" /><!--
        --><img src="../img/banner3.png" /><img src="../img/banner1.png" />
       </div>
      </div>
      
      
      
     </body>

  • 相关阅读:
    MongoDB的安装与简单使用
    [SCOI2008]天平
    [ZJOI2008]树的统计
    [HEOI2015]兔子与樱花
    [HAOI2006]l旅行
    [ZJOI2008]泡泡堂BNB
    [ZJOI2007]时态同步
    [SCOI2005]栅栏
    [SCOI2008]着色方案
    [SCOI2005]互不侵犯King
  • 原文地址:https://www.cnblogs.com/lwhvicky/p/6686871.html
Copyright © 2011-2022 走看看