我正在使用svg4everybody
,我不明白为什么有时会冻结 鼠标互动。
该插件动态加载many iframes
,但只有一些冻结。
如果我将鼠标悬停在按钮和其他可点击元素上,则光标会发生变化,如果我按下后退按钮,该网站将返回,冻结消失。
查看source file我看到使用了requestAnimationFrame
函数:
function onframe() {
var use;
while ((use = uses[0])) {
// some code
}
requestAnimationFrame(onframe);
}
if (IE9TO11) { // <-- edited in tests with if ( true || IE9TO11 )
onframe();
}
有可能是requestAnimationFrame
使冻结?或者有人有另一个更好的想法?
注意: 它仅在IE11中冻结 。尝试在FF32和Chrome 39中工作没有问题