vue-canvas-effect
A simple, canvas effect collection for Vue.js
🌾 online demo |
📘 中文文档
Contents
Browser support
IE | Firefox | Chrome | Safari | iOS | Android |
---|
IE9+ | ✓ | ✓ | ✓ | ✓ | ✓ |
Installation
NPM
npm install vue-canvas-effect --save
Usage
ES6
On demand
Recommend ways
First, install babel-plugin-import
npm install babel-plugin-import --save-dev
Then edit .babelrc
{
"plugins": [["import", {
"libraryName": "vue-canvas-effect",
"libraryDirectory": "src/components"
}]]
}
Next, if you need neon, edit main.js
import Vue from 'vue'
import {neon} from 'vue-canvas-effect';
Vue.component(neon.name, neon);
`or`
Vue.component('customName', neon);
new Vue({
el: '#app',
render: h => h(App)
})
Fully import
no recommend ways
import Vue from 'vue'
import vueCanvas from 'vue-canvas-effect';
Vue.use(vueCanvas)
new Vue({
el: '#app',
render: h => h(App)
})
normal use
script tag
<html>
<head>
...
</head>
<body>
<div id="app">
<neon-effect></neon-effect>
</div>
<script src="https://cdn.bootcss.com/vue/2.5.9/vue.js"></script>
<script src="../dist/neon.min.js"></script>
<script>
new Vue({
el: '#app'
})
</script>
</body>
</html>
Component List
neon
name: neonEffect
// default tagName use
<neon-effect :options="options"></neon-effect>
{
len: 20,
count: 50,
rate: 20,
dieChance: 0.05,
sparkChance: 0.1,
sparkDist: 10,
sparkSize: 2,
contentLight: 60,
shadowToTimePropMult: 6,
bgColorArr: [0, 0, 0]
}
bubbles
name: bubblesEffect
// default tagName use
<bubbles-effect :options="options"></bubbles-effect>
{
color: 'rgba(225,225,225,0.5)',
radius: 15,
densety: 0.3,
clearOffset: 0.2
}
Changelog
See the GitHub release history.
Contribution
Welcome to give some Suggestions and optimizations, and look forward to your Pull Request
.
TkS
circleMagic
License
vue-seamless-scroll is open source and released under the MIT License.