Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
barrage_plugin
Advanced tools
npm install barrage_plugin --save
<div id="barrage" class="bar-part">
<Barrage ref="barrage" :baseConfig="baseConfig"></Barrage>
<div @click="pause">暂停弹幕</div>
<div @click="reStart">重启弹幕</div>
<div @click="clear">清空弹幕数据</div>
</div>
import Barrage from 'barrage_plugin'
export default {
name: "Home",
components: {
Barrage
},
data() {
return {
baseConfig: {
channel: [60, 120, 180], // 轨道位置
channelCount: 5,
duration: 6,
itemCss: {
color: 'blue',
},
container: '#barrage', // 注只能传入id
list: [
{
content: '花木兰',
itemTemplate: `<div>花木兰${'花擦'}</div>`,
},
{
content: '胡歌胡歌胡歌',
},
],
},
};
},
created() {
},
methods: {
pause () {
console.log('click')
this.$refs.barrage.stopLoop()
},
reStart () {
console.log('click')
this.$refs.barrage.reStart()
},
clear () {
console.log('click')
this.$refs.barrage.clearBarrage()
},
}
};
<style scoped>
.bar-part {
width: 70%;
height: 500px;
margin-top: 100px;
margin-left: 20px;
}
</style>
baseConfig: {
listOrigin: [], // 弹幕源数据
channel: [], // 轨道位置,如[60, 120, 180],各个轨道的top距离(px)
channelCount: 40, // 每个轨道每屏幕展示弹幕最多数量,默认40
itemCss: '', // 自定义弹幕样式,每个弹幕上会增加此配置样式类
duration: 8, // 弹幕横跨全屏的时间(单位:s)
}
this.$refs.barrage.stopLoop() // 停止弹幕移动
this.$refs.barrage.reStart() // 弹幕移动重新启动
this.$refs.barrage.clearBarrage() // 清空弹幕元素
FAQs
vue弹幕插件
The npm package barrage_plugin receives a total of 1 weekly downloads. As such, barrage_plugin popularity was classified as not popular.
We found that barrage_plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.