<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>过渡</title> <style> body{ background-color: #00CCFF; } p{ text-align: center; letter-spacing: 50px; font-size: 50px; color: rgba(255,255,255,0.5); transition: all 5s ease; } p:hover{ text-align: center; font-size: 50px; letter-spacing: 0; color: white; } </style> </head> <body> <p>4亿网友共同信赖</p> </body> </html>
主要用到的是这两个属性 letter-spacing(字符间距) 和 transition,可参考网站 www.hshdlq.cn
letter-spacing transition: all 5s ease;