欢迎来到元素模板ys720.com,本站提供专业的织梦模板PBOOTCMS模板网站模板网站修改/网站仿站
当前位置:主页 > 程序教程 > 其他教程 >
其他教程

如何使用css 播放放大放小动画呢?

(元素模板) / 2023-02-28 19:35
如何制作css 放大放小动画呢?
元素模板为您解答
html代码
<div class="ballon"></div>

css代码
@keyframes scaleDraw {  
            0%{
                transform: scale(1);  
            }
            25%{
                transform: scale(1.1); 
            }
            50%{
                transform: scale(1);
            }
            75%{
                transform: scale(1.1);
            }
        }
    .ballon{
            width: 150px;
            height: 200px;
            background: url("images/balloon.png");
            background-size: 150px 200px;
            -WEBkit-animation-name: scaleDraw; 
            -webkit-animation-timing-function: ease-in-out; 
            -webkit-animation-iteration-count: infinite;  
            -webkit-animation-duration: 5s; 
        }

Copyright @ 2013-2021 元素模板 www.ys720.com All Rights Reserved. 版权所有 元素模板 www.ys720.com