js realizes the effect of Tanabata confession barrage, jQuery realizes barrage technology

js realizes the effect of Tanabata confession barrage, jQuery realizes barrage technology

This article shares the use of js and jQuery technology to realize the confession barrage for your reference. The specific content is as follows

js Tanabata confession bullet screen effect simple version effect:

Key code:

<script>
        var si;
        function tangmu(){
            clearInterval(si);
            var text = document.getElementById("text");
            var tangmu = document.getElementById("tangmu");
 
            var textStyle="<font id=\"textStyle\">"+text.value+"</font>";
             
            mathHeight = Math.round(Math.random()*tangmu.offsetHeight)+"px";
 
            var textLeft=tangmu.offsetWidth+"px";
             
            tangmu.innerHTML=textStyle;
             
            var textStyleObj = document.getElementById("textStyle");
             
            textStyleObj.style.left=textLeft;
            textStyleObj.style.top=mathHeight;
             
            var x = parseInt (textStyleObj.style.left);
             
            si = setInterval("xunhuan("+x+")",100);
             
        }
        function xunhuan(left){
            var textStyleObj = document.getElementById("textStyle");
            textStyleObj.style.left=left;
             
            var x = parseInt (textStyleObj.style.left);
 
            if(x<textStyleObj.style.width){
                document.getElementById("tangmu").innerHTML="";
                clearInterval(si);
            }else{
                x-=18;
            }
             
            textStyleObj.style.left=x+"px";
        }
</script>

jQuery implements barrage technology:

Effect:

Key code:

<script src="jquery-1.11.1.js"></script>
<script>

    $(function () {
        $(".showBarrage,.s_close").click(function () {
            $(".barrage,.s_close").toggle("slow");
        });
        init_barrage();
    })

    //Submit comment $(".send .s_btn").click(function () {
        var text = $(".s_text").val();
        if (text == "") {
            return;
        }

        var _lable = $("<div style='right:20px;top:0px;opacity:1;color:" + getRandomColor() + ";'>" + text + "</div>");
        $(".mask").append(_lable.show());
        init_barrage();
    })

    // Initialize barrage technology function init_barrage() {
        var _top = 0;
        $(".mask div").show().each(function () {
                    var _left = $(window).width() - $(this).width(); //The maximum width of the browser, as the value of positioning left var _height = $(window).height(); //The maximum height of the browser _top += 75;
                    if (_top >= (_height - 130)) {
                        _top = 0;
                    }
                    $(this).css({left: _left, top: _top, color: getRandomColor()});

                   //Timed pop-up text var time = 10000;
                    if ($(this).index() % 2 == 0) {
                        time = 15000;
                    }

                    $(this).animate({left: "-" + _left + "px"}, time, function () {
                        $(this).remove();
                    });

                }
        );

    }

    //Get random color function getRandomColor() {
        return '#' + (function (h) {
                    return new Array(7 - h.length).join("0") + h
                })((Math.random() * 0x1000000 << 0).toString(16))
    }

</script>

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • jQuery to achieve simple barrage production
  • jQuery implements bullet screen effects
  • jQuery to achieve live barrage effect
  • jQuery implements simple bullet screen effect
  • Simple implementation of jQuery bullet screen effect
  • Implementing Danmu APP based on jQuery
  • Realizing the barrage effect based on jQuery
  • Another wonderful bullet screen effect jQuery implementation
  • Finally realized! Wonderful jQuery barrage effect
  • jQuery to achieve the barrage effect case

<<:  Analysis of SQL integrity constraint statements in database

>>:  How to express relative paths in Linux

Recommend

How to import js configuration file on Vue server

Table of contents background accomplish Supplemen...

MySQL5.7 master-slave configuration example analysis

MySQL5.7 master-slave configuration implementatio...

Solution to the problem of English letters not wrapping in Firefox

The layout of text has some formatting requiremen...

A brief discussion on MySQL temporary tables and derived tables

About derived tables When the main query contains...

Vue implements left and right sliding effect example code

Preface The effect problems used in personal actu...

Detailed steps to install web server using Apache httpd2.4.37 on centos8

Step 1: yum install httpd -y #Install httpd servi...

Hidden overhead of Unix/Linux forks

Table of contents 1. The origin of fork 2. Early ...

Classes in TypeScript

Table of contents 1. Overview 2. Define a simple ...

Three strategies for rewriting MySQL query statements

Table of contents Complex query and step-by-step ...

Several implementation methods of the tab bar (recommended)

Tabs: Category + Description Tag bar: Category =&...

CSS to achieve Skeleton Screen effect

When loading network data, in order to improve th...

Analysis of Linux configuration to achieve key-free login process

1.ssh command In Linux, you can log in to another...

Html page supports dark mode implementation

Since 2019, both Android and IOS platforms have s...

Summary of the use of element's form elements

There are many form elements. Here is a brief sum...