资 源 简 介
jQuery HTML5 随机颜色弹幕墙效果,
var arr = [];//用来保存弹幕数据的数组
var start = true;//用来判断是否需要开启弹幕
$(document).ready(function(){
/*console.log($("#submit").html());
$("#submit").html("新按钮");*/
var showscreen = $(".danmuShow");//显示弹幕的div
var showHeight = showscreen.height(); //此div的高度
var showWidth = showscreen.width();//此div的宽度
//点击发送弹幕按钮
$("#submit").click(function(){
var damutext = $("#comments").val();//获取发送值
$("#comments").val("");//清空发送区
console.log(damutext);
arr.push(damutext);//将值放入数据数组中