Last active
October 12, 2024 16:13
-
-
Save behdad/99d9ce76e9b5c698589a0da14e81b65e to your computer and use it in GitHub Desktop.
PingFang UI font animation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Unicode Character Weight Animation</title> | |
<style> | |
@keyframes weightAnimation { | |
0% { | |
font-weight: 100; | |
} | |
25% { | |
font-weight: 300; | |
} | |
50% { | |
font-weight: 500; | |
} | |
75% { | |
font-weight: 700; | |
} | |
100% { | |
font-weight: 900; | |
} | |
} | |
.animated-character { | |
font-family: 'PingFang UI', sans-serif; | |
font-size: 100px; | |
animation: weightAnimation 5s infinite alternate; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="animated-character"> | |
桨 | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment