这篇文章给大家分享的是有关怎么使用CSS和GSAP实现树枝发芽的loader动画的内容。小编觉得挺实用的,因此分享给大家做个参考。一起跟随小编过来看看吧。
为永康等地区用户提供了全套网页设计制作服务,及永康网站建设行业解决方案。主营业务为网站设计制作、成都做网站、永康网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!
https://github.com/comehope/front-end-daily-challenges
定义 dom,容器包含 2 个元素,branch
代表枝,leaves
代表叶,叶有 6 个子元素,代表 6 个叶片:
居中显示:
body { margin: 0; height: 100vh; display: flex; align-items: center; justify-content: center; background-color: black; }
定义容器尺寸,并设置子元素水平居中:
.sapling { position: relative; width: 5em; height: 17.5em; font-size: 10px; display: flex; justify-content: center; }
画出树枝:
.branch { position: absolute; width: 0.2em; height: inherit; border-radius: 25%; background: burlywood; }
定义树叶容器,设置为叶片在垂直方向均匀分布,并且从下到上排列:
.leaves { position: absolute; width: inherit; height: 15em; top: 1em; display: flex; flex-direction: column-reverse; }
设置叶片的尺寸和和背景颜色:
.leaves span { width: 2.5em; height: 2.5em; background-color: limegreen; }
设置左右叶片的各自样式:
.leaves span:nth-child(odd) { border-bottom-left-radius: 3em; border-top-right-radius: 3em; transform-origin: right bottom; align-self: flex-start; } .leaves span:nth-child(even) { border-bottom-right-radius: 3em; border-top-left-radius: 3em; transform-origin: left bottom; align-self: flex-end; }
至此,静态效果绘制完成,接下来开始写动画脚本。
引入 GSAP 库:
声明一个时间线对象:
let animation = new TimelineMax();
增加树枝的入场动画效果,并为这个动画设置一个标签 branch
:
animation.from('.branch', 4, {scaleY: 0, ease: Power1.easeOut}, 'branch');
增加树叶的入场动画效果,它的参数中有 3 个 0.5
,从左到右的含义分别是动画时长、多个叶片动画的间隔时长、相对 branch
标签动画的延迟时间:
animation.from('.branch', 4, {scaleY: 0, ease: Power1.easeOut}, 'branch') .staggerFrom('.leaves span', 0.5, {scale: 0, ease: Power1.easeOut}, 0.5, 0.5, 'branch');
增加叶片变黄的动画效果:
animation.from('.branch', 4, {scaleY: 0, ease: Power1.easeOut}, 'branch') .staggerFrom('.leaves span', 0.5, {scale: 0, ease: Power1.easeOut}, 0.5, 0.5, 'branch') .to(['.branch', '.leaves span'], 3, {backgroundColor: 'yellow'});
增加淡出效果:
animation.from('.branch', 4, {scaleY: 0, ease: Power1.easeOut}, 'branch') .staggerFrom('.leaves span', 0.5, {scale: 0, ease: Power1.easeOut}, 0.5, 0.5, 'branch') .to(['.branch', '.leaves span'], 3, {backgroundColor: 'yellow'}) .to(['.branch', '.leaves span'], 1, {autoAlpha: 0});
修改声明时间线的代码,使动画重复播放:
let animation = new TimelineMax({repeat: -1, repeatDelay: 0.5});
感谢各位的阅读!关于怎么使用CSS和GSAP实现树枝发芽的loader动画就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到吧!