美文网首页
CSS3左右摆动效果

CSS3左右摆动效果

作者: 钱段工程师 | 来源:发表于2019-12-08 22:08 被阅读0次

<!DOCTYPE html>

<head>

<title></title>

<style>

.animate-1 {

width: 40px;

height: 40px;

background-color: red;

margin: 100px auto;

    animation: swing1 1s ease-in-out infinite;

    transform: rotate(-5deg);

    transform-origin: top center;

}

@keyframes swing1 {

    0% { transform: rotate(-5deg); }

    50% { transform: rotate(5deg);}

    100% { transform: rotate(-5deg);}

}

</style>

</head>

<body>

</div>

</body>

</html>

cv工程师

相关文章

网友评论

      本文标题:CSS3左右摆动效果

      本文链接:https://www.haomeiwen.com/subject/pcjvgctx.html