活到老學到老,真的是每天都發現自己基礎有點問題,實踐是檢驗真理的唯一標準
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
div{
width: 1000px;
height: 100px;
margin: 50px auto;
text-align: center;
}
.font-exp{
display: block;
letter-spacing: 2px;
transition: all 1s ease-in-out;
font-size: 40px;
font-family: "微軟雅黑";
}
.font-exp:hover{
letter-spacing: 5px;
font-size: 45px;
}
</style>
</head>
<body>
<div>
<span class="font-exp">share your code,share your wrold</span>
</div>
</body>
</html>
設置transition的時候,要在狀態切換前后,都設置對用屬性的值
fontchange.gif