透過 CSS 字型加粗屬性執行動畫
要透過 CSS 針對加粗屬性執行動畫,可以嘗試執行以下程式碼
示例
<!DOCTYPE html>
<html>
<head>
<style>
p {
border: 2px solid black;
width: 400px;
height: 100px;
animation: myanim 5s infinite;
}
@keyframes myanim {
70% {
font-weight: bold;
}
}
</style>
</head>
<body>
<p>This is demo text</p>
</body>
</html>
廣告
資料結構
網路
關係型資料庫管理系統
作業系統
Java
iOS
HTML
CSS
安卓
Python
C 程式設計
C++
C#
MongoDB
MySQL
JavaScript
PHP