溫馨提示×

溫馨提示×

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

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

利用JavaScript和jQuery知識如何實現(xiàn)有趣的彈幕效果

發(fā)布時間:2020-10-19 14:51:36 來源:億速云 閱讀:137 作者:小新 欄目:web開發(fā)

小編給大家分享一下利用JavaScript和jQuery知識如何實現(xiàn)有趣的彈幕效果,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

必備知識點:

(1)隨機數(shù)產(chǎn)生:var demo=parseInt(Math.random()*500)
(2)獲取一個元素的值:$("demo").val();
(3)給某個元素增加文本值:$("demo").text($("text").val())
(4)清空元素的值:$("demo").val("")
(5)jquery中animate屬性:
$(dem).animate({params},speed,callback
必需的 params 參數(shù)定義形成動畫的 CSS 屬性。
可選的 speed 參數(shù)規(guī)定效果的時長。它可以取以下值:"slow"、"fast" 或毫秒。
可選的 callback 參數(shù)是動畫完成后所執(zhí)行的函數(shù)名稱。

代碼:

<!DOCTYPE html>
<html>
<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>彈幕</title>
    <style>
    body{
   background-color:rgb(129,228,247);

    }
    .box1{
           width:100%;
           height:100%;
           position: absolute;
           bottom:-50px;
        }
   .box2{
        width:800px;
        position: absolute;
        height:100px;
        border:1px solid #ccc;
        background-color:rgb(164,204,178);
        bottom:50px;
        left:30%;
    }
    p{
        width:100px;
        height:50px;
        position: absolute;
        left:200px;
        top:1px;
        font-size:30px;
        color:pink;
    }
    .input{
        width:200px;
        height:30px;
        border:1px solid rgb(71, 224, 217);
        position: absolute;
        left:300px;
        top:34px;
    }
    .btn{
        width:60px;
        height:30px;
        position: absolute;
        left:520px;
        top:35px;
        background-color:rgb(17,150,225);
        color:#fff;
    }
    span{
      width: 300px;
      height: 140px;
      position: absolute;
      overflow: hidden;
      color: #000;
      font-size: 4em;
      line-height: 1.5em;
      cursor: pointer;
      white-space: nowrap;
    }
    </style>
     <script src="jquery/jquery-1.12.4.js"></script>
    <script>
    $(function(){
        var colors=["black","pink","hotpink","blue","yellow"];//顏色數(shù)組,隨機色從中產(chǎn)生
        $(".btn").click(function(){
            var radomColors=parseInt(Math.random() * colors.length);//隨機顏色
            var radomY=parseInt(Math.random()*500);//彈幕出現(xiàn)的隨機高度
            $("<span></span>").text($(".input").val())//創(chuàng)建一個span并且給他input值
           .css("color",colors[radomColors]) //給樣式增加隨機生成的顏色
            .css("left",1200)//設(shè)置left值,彈幕從哪兒開始
            .css("top",radomY)//設(shè)置top
            .animate({left:-500},5000,function(){
                $(this).remove();}//讓字體按5000毫秒的速度向左移動移動
            ).appendTo(".box1");
            $(".input").val("");
        });
    });</script>
</head>
<body>
    <div class="box1">
    <div class="box2">
       <p> 吐槽:</p><input type="text" class="input">
        <button value="發(fā)射" class="btn">發(fā)射</button>   
    </div>
</div>  
</body>
</html>

效果圖:

利用JavaScript和jQuery知識如何實現(xiàn)有趣的彈幕效果

看完了這篇文章,相信你對利用JavaScript和jQuery知識如何實現(xiàn)有趣的彈幕效果有了一定的了解,想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI