為 CSS text-decoration-color 屬性新增動畫
如果要使用 CSS 對 text-decoration 屬性實現動畫效果,請嘗試執行以下程式碼 −
示例
<!DOCTYPE html>
<html>
<head>
<style>
#demo {
position: absolute;
right: 0;
width: 300px;
height: 200px;
background-color: blue;
text-decoration: underline;
animation: myanim 3s infinite;
}
@keyframes myanim {
30% {
right: 350px;
text-decoration-color: orange;
}
}
</style>
</head>
<body>
<h1>CSS text-decoration-color property</h1>
<div id = "demo">
<h1>This is demo text.</h1>
</div>
</body>
</html>
廣告
資料結構
網路連線
關係型資料庫管理系統
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
JavaScript
PHP