发布于 2023-09-24 22:02:45 浏览 220 次
<style> .box { width: 200px; height: 200px; background-color: red; transition: background-color 0.5s ease-in-out; } .box:hover { background-color: blue; }</style>