对 CSS 行高属性执行动画
要通过 CSS 对line-height属性实现动画,你可以尝试运行以下代码: -
示例
<!DOCTYPE html>
<html>
<head>
<style>
p {
animation: mymove 3s infinite;
line-height: 20px;
}
@keyframes mymove {
70% {
line-height: 50px;
}
}
</style>
</head>
<body>
<p>This is demo text! This is demo text! This is demo text!
This is demo text! This is demo text! This is demo text!
This is demo text! This is demo text! This is demo text!
This is demo text! This is demo text! This is demo text!
</p>
</body>
</html>
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
JavaScript
PHP