html动爱⼼画效果代码,利⽤jscss3实现绘制爱⼼⾬动画特效特效描述:利⽤js css3实现绘制爱⼼⾬动画特效。利⽤js css3实现绘制爱⼼⾬动画特效
代码结构
1. 引⼊JS
2. HTML代码
:doodle {
@grid: 10 / 100%;
}
background: @pick(
#ff0198, #8156a8, #ff6d00, #ff75e4
);
transform: translate(
@rand(-50vw, 50vw),
@rand(-50vh, 50vh)
js控制css3动画触发);
@size: 3.5vmin;
@shape: heart;
@place-cell: 50% 50%;
animation-name: explosion;
animation-iteration-count: infinite;
animation-direction: reverse;
animation-duration: calc(@rand(2s, 5s, .1));
animation-delay: calc(@rand(-5s, -1s, .1));
animation-timing-function:
cubic-bezier(.84, .02, 1, 1);
@keyframes explosion {
0% { opacity: 0; }
70% { opacity: 1; }
100% { transform: translate(0, 0); }
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论