|
|

楼主 |
发表于 2021-12-25 11:30
|
显示全部楼层
效果楼的全部代码(兼顾了Firefox等浏览器):
- <style type="text/css">
- @keyframes iChange {
- from { width: 23px; height:24px; } to { width:230px; height:249px; }
- }
- @-moz-keyframes iChange {
- from { width: 23px; height:24px; } to { width:230px; height:249px; }
- }
- @-webkit-keyframes iChange {
- from { width: 23px; height:24px; } to { width:230px; height:249px; }
- }
- @-o-keyframes iChange {
- from { width: 23px; height:24px; } to { width:230px; height:249px; }
- }
- .s2b {
- animation: iChange 5s infinite alternate;
- -moz-animation: iChange 5s infinite alternate; /* Firefox */
- -webkit-animation: iChange 5s infinite alternate; /* Safari 和 Chrome */
- -o-animation: iChange 5s infinite alternate; /* Opera */
- width:23px;
- height:24px;
- }
- </style>
- <img class="s2b" src="https://s4.ax1x.com/2021/12/19/Teg2t0.jpg" alt="我变我变我变变变" />
复制代码
|
|