各种喜欢的Web视觉艺术

CSS中的过渡/形变/动画

2019-08-22  本文已影响23人  追逐_chase
web.jpeg

1.过渡(transition)

 <style>
        *{
            padding: 0;
            margin: 0;
        }

        div {
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            margin: auto;

            width: 200px;
            height: 100px;
            background-color: yellowgreen;
            line-height: 100px;
            text-align: center;
            /* 添加过渡属性 */
            /* 更改某个属性 */
            transition-property: width;
            /* 持续时间 */
            transition-duration: 4s;
            /* 运行速率 */
            transition-timing-function: ease;
            /* 延迟执行  1s后执行*/
            transition-delay: 1s;

            /* 兼容  Safari */
            -webkit-transition-property:width;

        }

        div:hover{
            width: 500px;
        }
    
    </style>
transition.gif

2. transform 形变

 <style>
        *{
            padding: 0;
            margin: 0;
        }

        div {
            
            margin: 100px auto;
            width: 200px;
            height: 100px;
            background-color: yellowgreen;
            line-height: 100px;
            text-align: center;
            transition: 2s;
            
           

        }

        div:hover{
           transform: translate(300px,300px);
        }
    
    </style>
translate.gif
  div:hover{
          
           transform: rotate(270deg);
        }
rotate.gif

注意 transform 中一个transform-origin属性,设置中心点,(默认是中心点) 可以自己设置

  • 可以是left top right bottom方位名词
  • 可以是精确的 px
 div {
            
            margin: 100px auto;
            width: 200px;
            height: 100px;
            background-color: yellowgreen;
            line-height: 100px;
            text-align: center;
            transition: 2s;
    // 设置中心点
            transform-origin:10px 10px;
            
           

        }

        div:hover{
          
           transform: rotate(270deg);
           
        }
transform-origin.gif
  div:hover{
          
           /* transform: rotate(270deg); */
           transform: skew(45deg);
           
        }
skew.gif
  div:hover{
          
           /* transform: rotate(270deg); */
           /* transform: skew(45deg); */
           transform: scale(2.0);
           
        }
scale.gif

3D效果

要做3D动画的效果,必须要有一个属性perspective,并且这个属性是作用在要做3D效果的 父级元素上

注意 perspective属性,经常和translateZ()的结合起来使用。

3D旋转 rotate3d(x,y,z,angle)

  #warp {
            width: 500px;
            height: 500px;
            border: 1px solid;
            position: absolute;
            left: 50%;
            top: 50%;
            margin-left: -250px;
            margin-top: -250px;
            /* 视距 */
            perspective: 200px;
            /* transform-style: preserve-3d; */
        }

        .dv{
            position: absolute;
            left: 50%;
            top:50%;
            margin-left: -100px;
            margin-top: -50px;
            width: 200px;
            height: 100px;
            background-color: yellowgreen;
            line-height: 100px;
            text-align: center;
            transition: 2s;
        }

 .dv:hover{
            transform: rotateX(360deg);
            cursor: pointer;
        
        }
rotateX.gif
 div:hover{
            transform: rotateY(360deg); 
           
        }

rotateY.gif
 div:hover{
            transform: rotateZ(360deg); 
           
        }
rotateZ.gif

3D平移 transform: translate3d(x,y,z)

   #warp {
            width: 500px;
            height: 500px;
            border: 1px solid;
            position: absolute;
            left: 50%;
            top: 50%;
            margin-left: -250px;
            margin-top: -250px;
            /* 视距 */
            perspective: 500px;
        }

        .dv{
            position: absolute;
            left: 50%;
            top:50%;
            margin-left: -100px;
            margin-top: -50px;
            width: 200px;
            height: 100px;
            background-color: yellowgreen;
            line-height: 100px;
            text-align: center;
            transition: 2s;
           
        }

        .dv:hover{
           /* transform: rotateX(270deg); */
            transform: translate3d(100px,100px,100px);
            cursor: pointer;
            background-color: rebeccapurple;
           
        }

Untitled.gif

翻转导航

  <style>
         *{
             margin: 0;
             padding: 0;
         }

         *::before,*::after{
             box-sizing: border-box;
         }

         body{
             text-align: center;
         }

         nav{
             display: inline-block;
             margin-top: 100px;
             
           
             
         }
         nav a {
             display: inline-block;
             text-decoration: none;
             color: #ffffff;
              /* 添加视距效果 */
              perspective: 600px;
              
         }

         nav a span {
             display: inline-block;
             line-height: 40px;
             background-color: #2195de;
             padding: 0 25px;
             position: relative;

             /* 给父元素添加3D的属性 */
             transform-style: preserve-3d;
             transition: 2s;
             transform-origin: top;
         }

         nav > a > span::after {
             /* 获取属性的内容 */
             content: attr(data_hover);
             position: absolute;
             top:100%;
             left: 0;
              height: 100%;
              width: 100%;
              background-color:  #0965a0;
              transform: rotateX(-90deg);
              transform-origin: top;
              
         }

         nav > a:hover > span {
             /* translateY 向上平移 20 是为了和中心线对齐 */
             transform: rotateX(90deg) translateY(-20px);
         }



    
    </style>
</head>
<body>

    <nav>
        <a href="#">
            <span data_hover="CC">音乐</span>
        </a>
        <a href="#">
                <span data_hover="一杯仙气">影视</span>
            </a>
    </nav>
    
</body>
Untitled.gif

动画 animation


 div{
            width: 200px;
            height: 200px; 
            background-color: yellowgreen;
            animation: cc_animation 2s linear infinite;
            
        }
        /*
         @-o-keyframes; 
        @-moz-keyframes; 火狐浏览器
        @-webkit-keyframes  谷歌 Safari
        */

  @keyframes cc_animation{
    
    //开始做动画的属性
        form{
       }
//结束做动画的属性
       to {
      }
  }
        @keyframes cc_animation{
            0% {
                background-color: rebeccapurple;
                transform: translateX(0);
            }
            25% {
                background-color: blue;
                transform: translateX(200px);
            }
            50% {
                background-color: pink;
                transform: translateX(350px);
            }
            75% {
                background-color: palevioletred;
                transform: translateX(600px);
            }
            100% {
                background-color: yellowgreen;
                transform: translateX(700px);
            }
        }
    

Untitled.gif
上一篇下一篇

猜你喜欢

热点阅读