HTML5分段式SVG文字动画特效是一款通过动画SVG的描边路径来制作各种文字的动画效果,效果非常棒。
JS代码:
<script> (function() { var decoLetter = new Letters(document.querySelector(\'.deco\'), { size: 1000, weight: 5, color: \'#212028\', //color: \'#63646B\', duration: 2, fade:0, easing: d3_ease.easeExpOut.ease }); decoLetter.hideInstantly(); setTimeout(function() { decoLetter.show(); }, 200); })(); </script> <script src=\"js/mo.min.js\"></script> <script src=\"js/demo-1.js\"></script>
暂无评论内容