Skip to content

Instantly share code, notes, and snippets.

@behdad
Last active October 12, 2024 16:13
Show Gist options
  • Save behdad/99d9ce76e9b5c698589a0da14e81b65e to your computer and use it in GitHub Desktop.
Save behdad/99d9ce76e9b5c698589a0da14e81b65e to your computer and use it in GitHub Desktop.
PingFang UI font animation
<!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">
&#x6868;
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment