博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JS弹幕实现
阅读量:6687 次
发布时间:2019-06-25

本文共 3695 字,大约阅读时间需要 12 分钟。

基于直播平台的流行,利用原生实现一下弹幕效果。

实现原理

1、设置展示弹幕元素位置属性为relative

2、动态创建弹幕元素,位置属性设置absolute,left为展示宽度
3、随机设置弹幕元素top值
4、随机产生弹幕元素移动速率,修改left值

随机颜色

第一种实现let color = '#' + Math.floor(Math.random() * 0xffffff).toString(16);第二种实现let color = '#' + Math.floor(Math.random() * 256).toString(10);第三种实现let r = Math.floor(Math.random()*256);let g = Math.floor(Math.random()*256);let b = Math.floor(Math.random()*256);let color = `rgb(${r},${g},${b})`;

随机速率

50 * +Math.random().toFixed(2)

代码

//html
//css* { box-sizing: border-box; outline: none;}p { margin: .5em; word-break: break-all;}.container { position: relative; width: 700px; height: 500px; margin: auto; padding-right: 200px;}.content { width: 100%; height: 100%; border: 1px solid #ccc;}.content-opt { position: absolute; top: 0; right: 0; width: 200px; height: 100%;}.content-text { height: calc(100% - 30px); margin-bottom: 30px; border: 1px solid #ccc; overflow: auto;}.content-input { position: absolute; bottom: 0; width: 100%; height: 30px; border: 1px solid #ccc;}.content-input input { width: 70%; padding: 2px; border-radius: 5px;}.content-input button { padding: 3px 10px; border: none; border-radius: 5px; background: rgb(90, 154, 214);}//js(function () { class Barrage { constructor(id) { this.domList = []; this.dom = document.querySelector('#' + id); if (this.dom.style.position == '' || this.dom.style.position == 'static') { this.dom.style.position = 'relative'; } this.dom.style.overflow = 'hidden'; let rect = this.dom.getBoundingClientRect(); this.domWidth = rect.right - rect.left; this.domHeight = rect.bottom - rect.top; } shoot(text) { let div = document.createElement('div'); div.style.position = 'absolute'; div.style.left = this.domWidth + 'px'; div.style.top = (this.domHeight - 20) * +Math.random().toFixed(2) + 'px'; div.style.whiteSpace = 'nowrap'; div.style.color = '#' + Math.floor(Math.random() * 256).toString(10); div.innerText = text; this.dom.appendChild(div); let roll = (timer) => { let now = +new Date(); roll.last = roll.last || now; roll.timer = roll.timer || timer; let left = div.offsetLeft; let rect = div.getBoundingClientRect(); if (left < (rect.left - rect.right)) { this.dom.removeChild(div); } else { if (now - roll.last >= roll.timer) { roll.last = now; left -= 3; div.style.left = left + 'px'; } requestAnimationFrame(roll); } } roll(50 * +Math.random().toFixed(2)); } } let barage = new Barrage('content'); function appendList(text) { let p = document.createElement('p'); p.innerText = text; document.querySelector('#content-text').appendChild(p); } document.querySelector('#send').onclick = () => { let text = document.querySelector('#text').value; barage.shoot(text); appendList(text); }; const textList = ['弹幕', '666', '233333333', 'javascript', 'html', 'css', '前端框架', 'Vue', 'React', 'Angular', '测试弹幕效果' ]; textList.forEach((s) => { barage.shoot(s); appendList(s); })})()

效果

转载地址:http://ddeao.baihongyu.com/

你可能感兴趣的文章
数据挖掘算法(Analysis Services – 数据挖掘)
查看>>
Apache配置详解(最好的APACHE配置教程)
查看>>
CentOS 7 下基于基 bitnami 安装部署 redmine
查看>>
linux ubuntu apt-get 更换源
查看>>
【Web探索之旅】第二部分第三课:框架和内容管理系统
查看>>
Javascript中公有成员,私有成员,静态成员
查看>>
DB2-内存的使用
查看>>
第四、五章解决队列和串的编程问题
查看>>
包失效,无法编译
查看>>
linux 配置全用户的环境变量,profile.d文件的作用
查看>>
linux邮件服务器配置
查看>>
HTML5学习笔记(二)——表单1
查看>>
docker笔记
查看>>
三层交换机与路由器的相关配置
查看>>
html表单笔记
查看>>
nginx负载均衡的5种策略
查看>>
MyBatis学习总结(三)——优化MyBatis配置文件中的配置
查看>>
《Java程序员的基本修养》读书笔记之内存回收
查看>>
鸟哥私房菜重温6
查看>>
适用于ASP等环境的JS日期选择控件
查看>>