IE10 vue SCRIPT5022: SecurityError
vue
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
项目地址:https://gitcode.com/gh_mirrors/vu/vue
免费下载资源
·
vue中使用 particles.js,IE10下报错SCRIPT5022: SecurityError ,粒子背景显示成这样
原因是 对canvas使用toDataURL时出现 "SCRIPT5022: SecurityError" 错误。
找到particles.js,将toDataURL这行注释掉,换成 XMLHttpRequest 方式即可:
pJS.fn.vendors.exportImg = function() {
// window.open(pJS.canvas.el.toDataURL('image/png'), '_blank')
var xhr = new XMLHttpRequest()
xhr.onload = function() {
var url = URL.createObjectURL(this.response)
pJS.canvas.el.src = url
URL.revokeObjectURL(url)
}
xhr.open('GET', 'image/png', true)
xhr.responseType = 'blob'
xhr.send()
}
particles-js 不能使用100%高度,自己计算动态赋值高度即可
<template>
<div class="particles-container">
<div id="particles-js" />
</div>
</template>
<script>
import './particles.js'
import particlesConfig from './particles.json'
export default {
data() {
return {}
},
created() {
},
mounted() {
document.querySelector('#particles-js').style.height = document.body.scrollHeight + 'px'
this.init()
},
methods: {
init() {
window.particlesJS('particles-js', particlesConfig)
document.body.style.overflow = 'hidden'
}
}
}
</script>
<style lang="scss" scoped>
#particles-js{
width: 100%;height:100%;
background:url('/images/bg_login.png') no-repeat;
background-size: cover;
}
</style>
改后IE浏览器终于正常显示。
GitHub 加速计划 / vu / vue
207.54 K
33.66 K
下载
vuejs/vue: 是一个用于构建用户界面的 JavaScript 框架,具有简洁的语法和丰富的组件库,可以用于开发单页面应用程序和多页面应用程序。
最近提交(Master分支:2 个月前 )
73486cb5
* chore: fix link broken
Signed-off-by: snoppy <michaleli@foxmail.com>
* Update packages/template-compiler/README.md [skip ci]
---------
Signed-off-by: snoppy <michaleli@foxmail.com>
Co-authored-by: Eduardo San Martin Morote <posva@users.noreply.github.com> 4 个月前
e428d891
Updated Browser Compatibility reference. The previous currently returns HTTP 404. 5 个月前
更多推荐
已为社区贡献3条内容
所有评论(0)