


Beginner's article: How to use CSS to implement simple skeletal animation (code sharing)
In the previous article "Teach you how to use shell scripts to implement quick server settings (with code)", I introduced how to use shell scripts to implement quick server settings. The following article will introduce to you how to use CSS to implement simple skeletal animation. Let's take a look at how to do it.
#1. Background
One day the designer came to me and said, “This wish sign doesn’t look good hanging there stupidly. It’s an animation effect, just swing it left and right, it’s very simple!” I thought, OK, let’s improve the user’s visual experience, let’s do it.
Ten minutes later, no, the left and right swing was so fake, it didn’t look like the real wind blowing effect.
Note: The speed of the animation and the amplitude of the swing are accelerated here.
.animate-1 { animation: swing1 1s ease-in-out infinite; transform: rotate(-5deg); transform-origin: top center; } @keyframes swing1 { 0% { transform: rotate(-5deg); } 50% { transform: rotate(5deg);} 100% { transform: rotate(-5deg);} }
Think calmly, why this swing has no soul. So I picked up the work card and started swinging it to see what the swing effect was like in reality. Finally, it suddenly dawned on me: It turns out that the wish card in reality (the same as the work card) does not swing as a whole when it is stressed. It will be divided into several parts and swing in association according to the node position. This is actually a simple skeletal animation! So how to achieve it?
2. Skeleton Animation
Here we will take the wish card swing animation as an example, and we will study together how to use css to achieve it.
2.1 Separate elements
To make animated elements move separately, you first need to split the elements. The basis for splitting is the nodes mentioned above, which are the so-called joints in skeletal animation. For example, this wish card has two joints, one on the top and one below the card, so we can split it into 3 animation elements:
2.2 Splicing elements
<div> <!--元素1--> <div class="item-1"></div> <!--元素2--> <div class="item-2"></div> <!--元素3--> <div class="item-3"></div> </div>
This seems simple, but if you don’t understand skeletal animation, you will fall into a pit. The above is a wrong demonstration. In order to deepen everyone's understanding, I dug a hole specially
2.3 Add animation
Based on the above, we can Part of it adds swing animations of different amplitudes and directions.
<div class="animate-2"> <!--元素1--> <div class="item-1"></div> <!--元素2--> <div class="item-2"></div> <!--元素3--> <div class="item-3"></div> </div>
.animate-2 .item-1 { /* 设置margin是为了定位,使其部分重叠在一起 */ margin-bottom: -8px; margin-left: 18px; position: relative; z-index: 1; animation: swing2-1 1s ease-in-out infinite; transform: rotate(-3deg); transform-origin: top center; } .animate-2 .item-2 { animation: swing2-2 1s ease-in-out infinite; transform: rotate(5deg); transform-origin: top center; } .animate-2 .item-3 { margin-top: -5px; margin-left: 17.5px; position: relative; animation: swing2-3 1s ease-in-out infinite; transform: rotate(-5deg); transform-origin: top center; } @keyframes swing2-1 { 0% { transform: rotate(-3deg); } 50% { transform: rotate(3deg);} 100% { transform: rotate(-3deg);} } @keyframes swing2-2 { 0% { transform: rotate(5deg); } 50% { transform: rotate(-5deg);} 100% { transform: rotate(5deg);} } @keyframes swing2-3 { 0% { transform: rotate(-5deg); } 50% { transform: rotate(5deg);} 100% { transform: rotate(-5deg);} }
Done? Let’s take a look at the effect
#Oh my God, what is this! ! ! It does look like the swing is more realistic than the overall swing, with different elements having different swing amplitudes and directions. But it's misplaced.
Continuing to think calmly, the problem lies in that each sub-animation of skeletal animation is related, and each animation we designed above is independent. For example, when the red rope at the top swings, it will pull the sign below, causing the position of the sign below to change. The sign below plays its own swinging animation while changing its position. This is skeletal animation!
2.4 Fill in the pit - realize skeletal animation from js to understand its principle
The source code is here, because it is on YouTube, in order to avoid some students who are not able to surf the Internet scientifically. Yes, so take the following running action as an example to explain the js implementation process
https://github.com/bit101/CodingMath/tree/master/episode44
According to the initial state of the thigh and the current rotation speed, calculate the position of the thigh in the next frame;
Calculate the calf based on the current position of the thigh and the current speed of the calf The position of the next frame;
...Infinite loop...
From here you can It can be seen that the position of the calf depends on the position of the thigh, so there will be no misalignment as we did above. So to put it bluntly, the characteristics of skeletal animation are:
Key elements move together with sub-elements, and sub-elements move on their own based on this.
So in js implementation, the connection is realized by first calculating the thigh position, and then calculating the calf position from the thigh position. How to implement it in css?
2.5 Pure CSS implementation
Review the most critical point: The key elements move together with the sub-elements, and the sub-elements move on their own based on this. , to realize the movement of key elements and sub-elements together, in css, as long as the key elements wrap the sub-elements! , this is the cornerstone of css to implement skeletal animation.
<div class="animate-3"> <!--运动模块1--> <div class="s-1"> <div class="item-1"></div> <!--运动模块2--> <div class="s-2"> <div class="item-2"></div> <!--运动模块3--> <div class="s-3"> <div class="item-3"></div> </div> </div> </div> </div>rrree
这次终于大功告成了。这里有三个元素,更多元素也是同理的,不断嵌套即可。
3、最终动效演示
细心的同学会发现上面实现的骨骼动画看着也别扭,归根结底是各个元素摆动的方向和幅度没有调节好,这里附上调整完的效果,用心感受:
.animate-4 .s-1 { animation: swing4-1 5s ease-in-out infinite; transform: rotate(-2deg); transform-origin: top center; } .animate-4 .s-2 { animation: swing4-2 8s ease-in-out infinite; transform: rotate3d(0, 1, 0, 20deg); transform-origin: top center; } .animate-4 .s-3 { animation: swing4-3 8s ease-in-out infinite; transform: rotate(3deg); transform-origin: top center; } @keyframes swing4-1 { 0% { transform: rotate(-2deg); } 50% { transform: rotate(2deg);} 100% { transform: rotate(-2deg);} } @keyframes swing4-2 { 0% { transform: rotate3d(0, 1, 0, 20deg); } 50% { transform: rotate3d(0, 1, 0, -20deg);} 100% { transform: rotate3d(0, 1, 0, 20deg);} } @keyframes swing4-3 { 0% { transform: rotate(3deg); } 50% { transform: rotate(-3deg);} 100% { transform: rotate(3deg);} }
4、End
纯CSS确实能实现骨骼动画,但仅限于简单的场景。在复杂场景中,例如前端游戏里面的骨骼动画,涉及到的节点比较多,用CSS虽然能实现,但效率不高,所以社区有很多从设计工具直接导出可用的骨骼动画信息,再用js来加载运行的方案,大家感兴趣可以Google一下。
本文主要通过简单的案例来加深大家对骨骼动画的原理性的认识,至于最后大家用CSS还是用JS来实现,就是“杀鸡要不要用牛刀”的问题了。
个人认为,只要屠龙刀在手,用不用已经不重要了。加油,希望大家能在各个方向找到自己的屠龙刀。
推荐学习:CSS视频教程
The above is the detailed content of Beginner's article: How to use CSS to implement simple skeletal animation (code sharing). For more information, please follow other related articles on the PHP Chinese website!

I got this question the other day. My first thought is: weird question! Specificity is about selectors, and at-rules are not selectors, so... irrelevant?

Yes, you can, and it doesn't really matter in what order. A CSS preprocessor is not required. It works in regular CSS.

You should for sure be setting far-out cache headers on your assets like CSS and JavaScript (and images and fonts and whatever else). That tells the browser

Many developers write about how to maintain a CSS codebase, yet not a lot of them write about how they measure the quality of that codebase. Sure, we have

Have you ever had a form that needed to accept a short, arbitrary bit of text? Like a name or whatever. That's exactly what is for. There are lots of

I'm so excited to be heading to Zürich, Switzerland for Front Conference (Love that name and URL!). I've never been to Switzerland before, so I'm excited

One of my favorite developments in software development has been the advent of serverless. As a developer who has a tendency to get bogged down in the details

In this post, we’ll be using an ecommerce store demo I built and deployed to Netlify to show how we can make dynamic routes for incoming data. It’s a fairly


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Notepad++7.3.1
Easy-to-use and free code editor

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6
Visual web development tools