我一直在密切關注這段代碼,試圖瞭解如何動畫邊框。通過調整代碼,我可以對邊框顏色進行動畫處理。動畫div顏色
但是,我沒能實現動畫使用@keyframes結構相同
可能有人請幫助一個div的背景色的效果(不是想爲替代的解決方案,而只是想用@關鍵幀)
HTML CSS &:
.wrapper {
border: 1px solid;
width: 100%;
height: 100%;
margin-right: auto;
margin-left: auto;
}
.green {
height: 200px;
width: 200px;
animation: 1s animategreen ease infinite;
margin-right: auto;
margin-left: auto;
}
@keyframes animategreen {
to {
background-color: rgba(0, 255, 0, 1);
}
}
<div class="wrapper">
<div class="green">
</div>
</div>
我猜你從價值@keyframes -example https://css-tricks.com/snippets/錯過css/keyframe-animation-syntax/ – theinarasu
自編輯以來,它的工作原理是:),那現在有什麼問題? :) –