91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

jQuery實現的頁面彈幕效果【測試可用】

發布時間:2020-09-06 14:38:47 來源:腳本之家 閱讀:174 作者:不會唱歌的演員不是好程序猿 欄目:web開發

本文實例講述了jQuery實現的頁面彈幕效果。分享給大家供大家參考,具體如下:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>juqery彈幕</title>
<style>
*{
margin: 0px;
padding: 0px;
}
html,body{
width: 100%;
height: 100%;
font-family: "微軟雅黑";
background-color: #ccc;
margin: 0;
padding: 0;
}
.boxDom{
width: 100%;
height: 800px;
position: relative;
overflow: hidden;
}
.boxDom img{
width: 100%;
height: 100%;
}
.idDom{
width: 100%;
height: 50px;
background-color: #666;
position: fixed;
bottom: 0px;
}
.content{
width: 600px;
height: 50px;
position: absolute;
left: 500px;
top:10px;
}
.title{
font-size: 25px;
display: inline;
vertical-align: bottom;
color: #fff;
}
.text{
width: 300px;
height: 30px;
border:none;
border-radius: 5px;
text-indent: 2em;
margin-left: 60px;
}
.btn{
width: 100px;
height: 30px;
margin-left: 20px;
font-size: 20px;
font-weight: 700;
color: #fff;
background-color: red;
border:none;
border-radius: 5px;
cursor: pointer;
}
.string {
width: 300px;
height: 40px;
margin-top: 20px;
position: absolute;
color: #000;
font-size: 20px;
font-family: "微軟雅黑";
}
</style>
</head>
<body>
<div class="boxDom" id="boxDom">
<!-- <img src="7.jpg" > -->
<div class="idDom">
<div class="content">
<p class="title">發送彈幕:</p>
<input type="text" class="text">
<button class="btn" id="btn" type="button">發送</button>
</div>
</div>
</div>
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script>
$(function () {
var boxDom = $("#boxDom");
var top, right;
var pageWidth = parseInt($(document).width());
var pageHeight = parseInt($(document).height());
$("#btn").bind("click", auto);
//綁定回車鍵按鈕
document.onkeydown = function(event){
if(event.keyCode == 13){
auto();
}
}
function auto() {
//獲取輸入的字符串
var str = $(".text").val();
//生成一個元素
var createSpan = $("<span class ='string'></span>");
//給元素賦值
createSpan.text(str);
//為了頁面友好,清空剛輸入的內容
$(".text").val("");
//生成元素一個隨機的位置 為了使每一條彈幕都出現不同的位置
top = Math.floor(Math.random()*pageHeight);
createSpan.css({ "top": top, "right": -400, "color": getRandomColor() });
boxDom.append(createSpan);
//元素在dom運動起來
//首先有一個span,只讓最后一個動起來
var spandom = $("#boxDom>span:last-child");//找到最后一個span
spandom.animate({"right":pageWidth+300},10000,function(){
$(this).remove();
});
}
//定義一個可以生成隨機顏色的方法
function getRandomColor(){
var colorArr = ['1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'];
var color = "";
for(var i=0;i<6;i++){
color += colorArr[Math.floor(Math.random()*16)];
}
return "#"+color;
}
})
$(function () {
var boxDom = $("#boxDom");
var top, right;
var pageWidth = parseInt($(document).width());
var pageHeight = parseInt($(document).height());
$("#btn").bind("click", auto);
//綁定回車鍵按鈕
document.onkeydown = function(event){
if(event.keyCode == 13){
auto();
}
}
function auto() {
//獲取輸入的字符串
var str = $(".text").val();
//生成一個元素
var createSpan = $("<span class ='string'></span>");
//給元素賦值
createSpan.text(str);
//為了頁面友好,清空剛輸入的內容
$(".text").val("");
//生成元素一個隨機的位置 為了使每一條彈幕都出現不同的位置
top = Math.floor(Math.random()*pageHeight);
createSpan.css({ "top": top, "right": -400, "color": getRandomColor() });
boxDom.append(createSpan);
//元素在dom運動起來
//首先有一個span,只讓最后一個動起來
var spandom = $("#boxDom>span:last-child");//找到最后一個span
spandom.animate({"right":pageWidth+300},10000,function(){
$(this).remove();
});
}
//定義一個可以生成隨機顏色的方法
function getRandomColor(){
var colorArr = ['1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'];
var color = "";
for(var i=0;i<6;i++){
color += colorArr[Math.floor(Math.random()*16)];
}
return "#"+color;
}
})
</script>
</body>
</html>

運行效果如下圖所示:

jQuery實現的頁面彈幕效果【測試可用】

感興趣的朋友還可以使用在線HTML/CSS/JavaScript代碼運行工具:http://tools.jb51.net/code/HtmlJsRun,測試一下運行效果。

更多關于jQuery相關內容感興趣的讀者可查看本站專題:《jQuery切換特效與技巧總結》、《jQuery拖拽特效與技巧總結》、《jQuery擴展技巧總結》、《jQuery常見經典特效匯總》、《jQuery動畫與特效用法總結》、《jquery選擇器用法總結》及《jQuery常用插件及用法總結》

希望本文所述對大家jQuery程序設計有所幫助。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

聂荣县| 马龙县| 河间市| 博野县| 泰兴市| 济阳县| 德惠市| 曲麻莱县| 钟祥市| 天台县| 邻水| 准格尔旗| 渭源县| 海林市| 奉节县| 平定县| 肥城市| 龙陵县| 武乡县| 安阳县| 宁远县| 松潘县| 泾源县| 镇巴县| 北京市| 大城县| 龙海市| 满城县| 买车| 曲靖市| 牡丹江市| 平泉县| 渭源县| 余江县| 长治县| 海晏县| 梁平县| 庐江县| 盈江县| 绥滨县| 长顺县|