SVGとSassでうねうねするアニメーション
6459 ワード
波の線をSVGで作って、一本ずつ動きと色がズレるように動かせたものです
特に使い所はないです
.html
<div class="box"></div>
.js
for (let i = 0; i < 20; i++) {
$('.box').append('<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 150 6"><path d="M0,1c25,0,25,4,50,4c25,0,25-4,50-4s25,4,50,4" /></svg>');
}
.scss
.box {
font-size: 10px;
width: 30em;
height: 30em;
display: flex;
flex-direction: column;
justify-content: space-between;
overflow: hidden;
svg {
width: 35em;
fill: none;
@for $i from 1 through 20 {
&:nth-child(#{$i}) {
animation: Wavy 2s (0.1s * $i) ease-in-out infinite;
stroke: adjust-hue(#f99, (20deg * $i));
}
}
}
}
@keyframes Wavy {
0% {
transform: translateX(0);
filter: hue-rotate(0deg);
stroke-width: 1;
}
50% {
transform: translateX(-5em);
filter: hue-rotate(180deg);
stroke-width: 1.5;
}
100% {
transform: translateX(0);
filter: hue-rotate(0deg);
stroke-width: 1;
}
}
Author And Source
この問題について(SVGとSassでうねうねするアニメーション), 我々は、より多くの情報をここで見つけました https://zenn.dev/hryk_n/articles/62805397c7da95著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Collection and Share based on the CC protocol