zoukankan      html  css  js  c++  java
  • CSS3 文字忽大忽小效果样式收藏

    .blink{
                    position:relative;
                    animation:mymove 5s infinite;
                    -webkit-animation:mymove 5s infinite; /*Safari and Chrome*/
                    animation-direction:alternate;/*轮流反向播放动画。*/
                    animation-timing-function: ease-in-out; /*动画的速度曲线*/
                    /* Safari 和 Chrome */
                    -webkit-animation:mymove 5s infinite;
                    -webkit-animation-direction:alternate;/*轮流反向播放动画。*/
                    -webkit-animation-timing-function: ease-in-out; /*动画的速度曲线*/
                }
                @keyframes mymove
                {
                    0%{
                    transform: scale(1);  /*开始为原始大小*/
                    }
                    25%{
                        transform: scale(1.1); /*放大1.1倍*/
                    }
                    50%{
                        transform: scale(1);
                    }
                    75%{
                        transform: scale(1.1);
                    }
                
                }
                
                @-webkit-keyframes mymove /*Safari and Chrome*/
                {
                    0%{
                    transform: scale(1);  /*开始为原始大小*/
                    }
                    25%{
                        transform: scale(1.1); /*放大1.1倍*/
                    }
                    50%{
                        transform: scale(1);
                    }
                    75%{
                        transform: scale(1.1);
                    }
                }
    

      

    <div style="height: 35px;300px;background:orangered;border-radius: 4px;" id="animat">12313213213</div>
  • 相关阅读:
    stl(8)常见的算法
    stl(7)几种常见的迭代器
    stl(6)deque容器
    pre_exam_exercise1
    全为1时计算个数,出现0返回0
    COMP9021--7.18
    lecture 5 Basics of Map Algebra
    COMP9021--7.15
    Lecture 4补充
    COMP9021--7.4
  • 原文地址:https://www.cnblogs.com/phper12580/p/13037086.html
Copyright © 2011-2022 走看看