作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 SVG 动画在 codepen 上运行良好
但是当我将它添加到 my page 时它不再工作了。我不断在控制台中收到此消息:
未捕获的类型错误:无法读取 null 的属性“getTotalLength”
在 animatePath (sf.js:4)
在 sf.js:21
4 var length = path.getTotalLength();
21 animatePath('#bigs', 'stroke-dashoffset 0.6s ease-in-out');
最佳答案
您必须等到 SVG 加载完毕并且 DOM 准备就绪,然后才能获取对路径的引用。你的 Javascript 运行得太快了,所以
var path = document.querySelector(pathname);
正在返回 null。
这不会影响代码笔,因为它在加载后运行 Javascript。
要解决此问题,请将您的 animatePath()
调用包装在如下内容中:
window.onload = function() {
animatePath('#bigs', 'stroke-dashoffset 0.6s ease-in-out');
animatePath('#a1', 'stroke-dashoffset 0.5s 0.5s ease-in-out');
...
}
关于javascript - 未捕获的类型错误 : Cannot read property 'getTotalLength' of null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45656653/
我是一名优秀的程序员,十分优秀!