作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用flubber/animejs有什么优点/缺点变形 svg 路径 ?
与 bundle size 相比,Flubber 似乎要大得多(就 animejs's 而言) . Flubber 对所有这些代码做了什么?它的性能是否更显着?
最佳答案
绒布和 日本动漫JS经常一起使用:
/*Ref: from https://www.codeseek.co/asistapl/morph-svg-with-animejs-flubberjs-vZGoOK */
const star = document.querySelector('.js-star')
const target = document.querySelector('.js-target')
const interpolator = flubber.interpolate(
star.getAttribute('d'),
target.getAttribute('d')
)
let val = { prop: 0 }
anime({
targets: val,
prop: 1,
duration: 1000,
easing: 'easeInOutCirc',
loop: true,
direction: 'alternate',
update(anim) {
star.setAttribute('d', interpolator(val.prop))
}
})
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Morph SVG with anime.js + flubber.js</title>
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" width="300" height="300">
<defs>
<path class="js-target" d="M7 2v11h3v9l7-12h-4l4-8z"/>
</defs>
<g transform="scale(10)">
<path class="js-star" d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/>
</g>
</svg>
<script src='https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.0/anime.min.js'></script>
<script src='https://unpkg.com/flubber'></script>
</body>
</html>
The goal of this library is to provide a best-guess interpolation for any two arbitrary shapes
Anime.js (/ˈæn.ə.meɪ/) is a lightweight JavaScript animation library with a simple, yet powerful API. It works with CSS properties, SVG, DOM attributes and JavaScript Objects.
关于javascript - 用于svg动画的flubber或animejs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58896340/
我是一名优秀的程序员,十分优秀!