-
Notifications
You must be signed in to change notification settings - Fork 328
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[注解] [806] 沿环形路径平移的动画 #81
Comments
请问如果想像书中提到google+那样一圈头像都沿路径转一圈要怎么做呢? |
@cyanxxx |
我尝试用不同的keyframe来控制它们起始不同的角度,但是会造成有很多keyframe,但是如果要做到google+那样,新加入人挤出去位置的话,假设一开始2个人,每个以180°来填满圆,那样又会就会有两个keyframe控制,3个人,又以120°控制,就这样会又会有3个keyframe,假设满人是8,那就会有45个,不知道有没有好的方法呢? |
@cyanxxx 另外,思路不用局限于 CSS。结合 JS 来控制动画可能会简单一些。 |
文中写到: "每个transform-origin都是可以被两个 translate() 模拟出来的", 示例代码给的是:
最后为什么代码里不用给变换元素设置 |
示例代码只是为了说明 在最终的代码里,动画的原点就是路径的正中心,也就是 |
花絮与注解
第 221 页 ‧ 本节
这一节算是全书最烧脑的一个案例了,不过我们用一句话就可以概括它:这基本上是一个 “自转抵消公转” 的故事。
当自转周期与公转周期完全相等时,这个物体在外界看来就没有任何角度变化了,从而以一种 “平移” 的方式在围绕圆心转动。
The text was updated successfully, but these errors were encountered: