滚动弹幕演示

要求:

1.页面上漂浮字体大小不一、颜色不一,从左向右滚动的弹幕;
2.底部中间有一个发送功能,可以发送新的弹幕;
3.底部的发送部分可以向下收起和弹出。

原理:

获取父元素,创建新的节点,input获取value值,用innerHTML添加进获取的value值,完成弹幕设置
其中滚动用到chuan新标签<marquee></marquee>

代码:

    <style>
        *{margin: 0;padding: 0;}
        #box{
            background-color:bisque;
            width: 500px;
            height: 200px;
            position: relative;
        }
        marquee{
            position: absolute;
         }
        #box_one{
            font-size: 18px;
            color: brown;
            width: 100%;
            top:10px 
        }
        #box_two{
            font-size: 13px;
            color: coral;
            width: 100%;
            top:40px 
        }
        #box_three{
            font-size: 15px;
            color:blue;
            width: 100%;
            top:70px 
        }
        #box_four{
            font-size: 20px;
            color:red;
            width: 100%;
            top:90px 
        }
        #box_five{
            font-size: 8px;
            color: black;
            width: 100%;
            top:120px 
        }
        #danmu{outline:none;}
        #text{
            width: 500px;
            text-align: center;
        }
        #jiantou{
            background: url(./下箭头.png);
            display: inline-block;
            background-size: cover;
            position: absolute;
            width: 30px;
            height: 30px;
            bottom: 0px;
            left: 220px;
            cursor:default
        }
    </style>
</head>
<body>
    <div id="box">
        <div id="jiantou"></div>
        <marquee id="box_one">1111111</marquee>
        <marquee id="box_two">222222222222</marquee>
        <marquee id="box_three">33333333333333333333</marquee>
        <marquee id="box_four">4444</marquee>
        <marquee id="box_five">55555555555</marquee>
    </div>
    <div id="text" style="display: none;">
        <input type="text" id="danmu">
        <button>发送</button>
    </div>
    <script>
        var jt = document.querySelector("#jiantou")
        var box = document.querySelector("#box")
        var btn = document.querySelector("button")
        var danmu = document.querySelector("#danmu")
        var text = document.querySelector("#text")
        btn.onclick = function(){
            var value = danmu.value
            var omarquee = document.createElement("marquee");
            omarquee.innerHTML = `${value}`
            box.appendChild(omarquee)
            var time = setTimeout(function(){
                danmu.value=""
            },50)
        }
        jt.onclick = function(){
            text.style = "display: block"
        }
    </script>
</body>

演示:

弹幕

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值