動くアイコンを作りたく、LAZY LINE PAINTER というサイトで動くSVGファイルを生成しました。
生成し、実装もできたのですが、スクロールして表示されたらアニメーション発火させたく、いろいろ調べてみたのですが、なかなかうまくいかず、
どう書いたらいいか分かりません。
教えていただけますと助かります。よろしくお願いいたします。
HTML
1<svg version="1.1" id="cycleicon" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 150 150" style="enable-background:new 0 0 150 150;" xml:space="preserve" data-llp-composed="true" class="lazy-line-painter"> 2<g> 3 <path class="st0" d="M132.37,116.82c-5.68,8.13-13.19,15.17-22.35,20.46c-33.48,19.33-76.29,7.86-95.61-25.62" data-llp-id="cycleicon-0" data-llp-duration="500" data-llp-delay="0" fill-opacity="0" style=""/> 4 <polyline class="st0" points="12.27,119.01 14.29,111.48 21.83,113.5 	" data-llp-id="cycleicon-1" data-llp-duration="500" data-llp-delay="500" fill-opacity="0" style=""/> 5</g> 6<g> 7 <path class="st1" d="M11.48,106.14c-4.2-8.99-6.54-19.01-6.54-29.59c0-38.66,31.34-69.99,69.99-69.99" data-llp-id="cycleicon-2" data-llp-duration="500" data-llp-delay="1000" fill-opacity="0" style=""/> 8 <polyline class="st1" points="69.62,1.04 75.14,6.56 69.62,12.07 	" data-llp-id="cycleicon-3" data-llp-duration="500" data-llp-delay="1500" fill-opacity="0" style=""/> 9</g> 10<g> 11 <path class="st2" d="M81.08,6.97c9.88,0.86,19.74,3.84,28.9,9.13c33.48,19.33,44.95,62.14,25.62,95.61" data-llp-id="cycleicon-4" data-llp-duration="500" data-llp-delay="2000" fill-opacity="0" style=""/> 12 <polyline class="st2" points="143.02,109.87 135.49,111.89 133.47,104.36 	" data-llp-id="cycleicon-5" data-llp-duration="500" data-llp-delay="2500" fill-opacity="0" style=""/> 13</g> 14</svg>
js
1 2(function(){ 3document.onreadystatechange = () => { 4 5 if (document.readyState === 'complete') { 6 7 /** 8 * Setup your Lazy Line element. 9 * see README file for more settings 10 */ 11 12 let el = document.querySelector('#cycleicon'); 13 let myAnimation = new LazyLinePainter(el, {"ease":"easeLinear","strokeWidth":1,"strokeOpacity":1,"strokeCap":"square"}); 14 myAnimation.paint(); 15 } 16 } 17 18 })(); 19 20// 発火するタイミングを設定 21var $window = $(window), 22 $skill = $('#cycleicon'), 23 topSkill = $skill.offset().top; 24var Flag = false; 25 26// そこまでスクロールしたら実行 27$window.scroll(function() { 28 if ($window.scrollTop() > topSkill && 29 Flag === false) { 30 skill_animation(); 31 Flag = true; 32 } 33
CSS
1#cycleicon { 2 width: 7rem; 3 height: 7rem; 4 position: relative; 5 overflow: visible; 6} 7.st0{fill:none;stroke:#687DDE;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;} 8.st1{fill:none;stroke:#339489;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;} 9.st2{fill:none;stroke:#F05F5F;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;} 10
回答1件
あなたの回答
tips
プレビュー