gpt4 book ai didi

css3 旋转动画不起作用

转载 作者:行者123 更新时间:2023-11-28 02:52:16 24 4
gpt4 key购买 nike

我已经使用 css3 animate 使小文本旋转,但它不会旋转。

Jsfiddle

    <h1 class="title">Coming Soon <small>btw learning</small></h1>


small {
animation:spin 4s linear infinite;
}

@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
20% { -webkit-transform: rotate(90deg); }
25% { -webkit-transform: rotate(90deg); }
45% { -webkit-transform: rotate(180deg); }
50% { -webkit-transform: rotate(180deg); }
70% { -webkit-transform: rotate(270deg); }
75% { -webkit-transform: rotate(270deg); }
100% { -webkit-transform: rotate(360deg); }
}

最佳答案

使用 display:inline-block;

<h1 class="title">Coming Soon <span class="animation">btw learning</span></h1>


.title
{
font-family: 'Cinzel Decorative', cursive;
text-align: center;
font-size: 100px;
margin-top: 25%;
}


.animation {
animation:spin 4s linear infinite;
display:inline-block;
}

@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
20% { -webkit-transform: rotate(90deg); }
25% { -webkit-transform: rotate(90deg); }
45% { -webkit-transform: rotate(180deg); }
50% { -webkit-transform: rotate(180deg); }
70% { -webkit-transform: rotate(270deg); }
75% { -webkit-transform: rotate(270deg); }
100% { -webkit-transform: rotate(360deg); }
}

关于css3 旋转动画不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46618791/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com