search
HomeWeb Front-endJS TutorialJquery implements broadcasting imitating Tencent Weibo_jquery

Preface: Since I have been learning some knowledge about Jquery these days, I feel that Jquery is too powerful than before. Many simple functions used to require dozens of lines of code in JavaScript but only use a few lines of code in Jquery. That’s it, so I decided to study Jquery hard. Please support me. Haha, learning Jquey these days has made me feel that it is not difficult to use Jquery. I feel that Jquery only needs to learn the selector. The basics can be easily solved, learn more about some methods, events, etc. So I implemented a Jquery here to imitate Tencent's meager broadcast publishing.

1. First create a new HTML page and introduce what function I want to achieve

(1) Create a new HTML page as follows

(2) The first function, when the mouse slides over the broadcast image, it will turn into another picture with a lighter color, and it will return to the original state when leaving it

(3) The second function is that when you enter text into the text input box and do not enter a word, the number of words indicated at the bottom is reduced by 1. If it exceeds the number, the user will be prompted how many words have been exceeded

(4) The third function is to click the topic button. If the text box is empty, #Please enter topic information # will be entered, and please enter the topic information to highlight. If the text box is not empty, nothing will be displayed. Do not enter

(5) The fourth function is that when a friend is clicked, a layer will be generated underneath to display the user’s friends. When the user clicks a friend, the name will be displayed in the text box

(6) The fifth function, when the user clicks on the emoticon, the commonly used emoticons of QQ will be displayed, and then the user can select the emoticon to click and display in the text box. This is basically the same as the fourth function, as follows The functions are described below

2. The first function

 (1) Function display diagram

Since this is just a simple sliding effect, the screenshot does not look obvious, so I only posted the code

 (2) Code

Copy code The code is as follows:

//Realize the change reaction of moving the picture up and down
  $("#sendBox :button.sendBtn").mouseover(function () {
   $(this).css("backgroundPosition", "0 -196px");
  }).mouseout(function () {
​​ $(this).css("backgroundPosition", "-117px -165px");
  });

3. The second function

 (1) Function screenshots

 

 (2) Code

Copy code The code is as follows:

//Realize changes in the number of input characters
  $("#msgTxt").change(function () {
​var world = $("#msgTxt").val();
var length = 140 - world.length;
​if (length $("#sendBox span.countTxt").html("You have exceeded " Math.abs(length) " words");
}else {
​$("#sendBox span.countTxt").html("You can also enter " length "words");
}
});
​ setInterval(function () {
​$("#msgTxt").change();
}, 20);

4. The third function

 (1) Function screenshots

 

 (2)Code

Copy code The code is as follows:

//Confirm the text of the output information (please enter the topic information to display in red)
/*
​​Extend a method for selecting text for jQuery
*/
$.fn.selectRange = function (start, end) {
        var curObj = $(this).get(0);
            if (!curObj) return;
            else if (curObj.setSelectionRange) {
                                 curObj.focus();
                 curObj.setSelectionRange(start, end);
             } /* WebKit */
            else if (curObj.createTextRange) {
            var range = curObj.createTextRange();
                 range.collapse(true);
                 range.moveEnd('character', end);
                 range.moveStart('character', start);
                  range.select();
                         /* IE */
             else if (curObj.selectionStart) {
alert('aaaaaaaa');
CurObj.selectionStart = start;
CurObj.selectionEnd = end;
          }
};
//Click topic output#Please enter topic information#
​​​ $("#funBox a.creatNew").click(function () {
If ($.trim($("#msgTxt").val()).length == 0) {
                 $("#msgTxt").val("#Please enter topic information#").selectRange(1, 8);
         }
});

5. The fourth function

 (1) Function screenshots

 

 (2)Code

Copy code The code is as follows:

//Realize the display of friend information when clicking the friend button
var friendList = ["Dai Zhong", "Xiao Meng", "Ren Shoulong", "Dai Wei", "Maria", "Han Yinglong", "Sheng Jingheng", "Feifei", "Xiao Xian", " Yuanfang"];
$("#funBox a.atSome").click(function () {
//The div layer with id as level defined above is position:absolution
$("
    div>").appendTo("#funBox");
    //Use $.each to loop through the array values ​​and add them to the layer
    If ($("#level").text() == "") {
                       $.each(friendList, function () {
    //Traverse and add li style transformation to the layer
    $("
  • @" this "
  • ").css("cursor", "pointer").mouseover(function () {
                    $(this).css("backgroundColor", "yellow").siblings().css("backgroundColor", "white");
                    }).appendTo($("#ul")).click(function () {
    //When implementing the click style, write the value to
                   $("#msgTxt").val($("#msgTxt").val() $(this).text());
                })
             })
    };
    //How to determine whether a user clicked a button
    $("#level").mouseleave(function () {
    ​​​​​ $("#level").remove();
    })
    //Place the location of the created module
    $("#level").css("top", $(this).offset().top $(this).height "px").css("left", $(this).offset(). left "px");
    });

    6. The fifth function

     (1) Function screenshots

     

     (2)Code

    Copy code The code is as follows:

    //Realize the function of QQ emoticons
    var userFaces = { '0.gif': 'smile', '1.gif': 'lip', '2.gif': 'color', '3.gif': 'daze', '4.gif': 'Proud', '5.gif': 'Crying', '6.gif': 'Shy', '7.gif': 'Shut up', '8.gif': 'Sleep', '9.gif' : 'crying', '10.gif': 'embarrassed', '11.gif': 'angry', '12.gif': 'naughty', '13.gif': 'baring teeth', '14. gif': 'surprised', '15.gif': 'sad', '16.gif': 'cool', '17.gif': 'cold sweat', '18.gif': 'crazy', '19 .gif': 'vomit', '20.gif': 'smirk', '21.gif': 'cute', '22.gif': 'eye roll', '23.gif': 'arrogant', ' 24.gif': 'hungry', '25.gif': 'sleepy', '26.gif': 'frightened', '27.gif': 'sweating', '28.gif': 'silly laughter', '29.gif': 'Soldier', '30.gif': 'Struggle', '31.gif': 'Swear', '32.gif': 'Question', '33.gif': 'Hush', '34.gif': 'faint', '35.gif': 'torture', '36.gif': 'degeneration', '37.gif': 'skeleton', '38.gif': 'beat', '39.gif': 'Goodbye', '40.gif': 'Wipe sweat', '41.gif': 'Pick your nose', '42.gif': 'Applause', '43.gif': 'Embarrassment' Big', '44.gif': 'Smirk', '45.gif': 'Left humming', '46.gif': 'Right humming', '47.gif': 'Yawn', ' 48.gif': 'contempt', '49.gif': 'grievance', '50.gif': 'almost crying', '51.gif': 'insidious', '52.gif': 'kiss ', '53.gif': 'Scary', '54.gif': 'Poor', '55.gif': 'Chopper', '56.gif': 'Watermelon', '57.gif': 'Beer ', '58.gif': 'Basketball', '59.gif': 'Ping Pong', '60.gif': 'Coffee', '61.gif': 'Rice', '62.gif': 'Pig Head ', '63.gif': 'Rose', '64.gif': 'Wither', '65.gif': 'Show love', '66.gif': 'Love', '67.gif': 'Heart Broken', '68.gif': 'Cake', '69.gif': 'Lightning', '70.gif': 'Bomb', '71.gif': 'Knife', '72.gif': ' Football', '73.gif': 'Ladybug', '74.gif': 'Poop', '75.gif': 'Moon', '76.gif': 'Sun', '77.gif': 'gift', '78.gif': 'hug', '79.gif': 'strong', '80.gif': 'weak', '81.gif': 'handshake', '82.gif': 'Victory', '83.gif': 'Fist', '84.gif': 'Seduce', '85.gif': 'Fist', '86.gif': 'Poor', '87.gif': 'Love you', '88.gif': 'NO', '89.gif': 'OK', '90.gif': 'Love', '91.gif': 'Blow a kiss', '92.gif' : 'jumping', '93.gif': 'trembling', '94.gif': 'burning', '95.gif': 'turning in circles', '96.gif': 'kowtow', '97. gif': 'turn back', '98.gif': 'skipping rope', '99.gif': 'waving', '100.gif': 'excited', '101.gif': 'street dance', '102. gif': 'Kiss', '103.gif': 'Left Tai Chi', '104.gif': 'Right Tai Chi', '105.gif': 'Calm', '106.gif': 'Dizzy', '107.gif': 'dissatisfaction', '108.gif': 'sleep', '109.gif': 'naughty', '110.gif': 'cursing', '111.gif': 'angry' , '112.gif': 'laughing', '113.gif': 'smiling', '114.gif': 'shocked', '115.gif': '囧' };
    $("#funBox a.insertFace").click(function () {
    $("
    ").appendTo("#funBox");
    $.each(userFaces, function (key, value) {
    $("Jquery implements broadcasting imitating Tencent Weibo_jquery").css("cursor", "pointer").appendTo("#Userfaces").click(function () {
             $("#msgTxt").val($("#msgTxt").val() "[" $(this).attr("title") "]");
    });
    });
    //Same as above, how to determine whether a user clicked a button
    $("#Userfaces").mouseleave(function () {
              $("#Userfaces").remove();
    });
    //Placement
    $("#Userfaces").css("top", $(this).offset().top $(this).height "px").css("left", $(this).offset(). left "px");
    });

    Alright, we have all the functions we should have. As for beautification, friends can do it by themselves

    Statement
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    jquery实现多少秒后隐藏图片jquery实现多少秒后隐藏图片Apr 20, 2022 pm 05:33 PM

    实现方法:1、用“$("img").delay(毫秒数).fadeOut()”语句,delay()设置延迟秒数;2、用“setTimeout(function(){ $("img").hide(); },毫秒值);”语句,通过定时器来延迟。

    jquery怎么修改min-height样式jquery怎么修改min-height样式Apr 20, 2022 pm 12:19 PM

    修改方法:1、用css()设置新样式,语法“$(元素).css("min-height","新值")”;2、用attr(),通过设置style属性来添加新样式,语法“$(元素).attr("style","min-height:新值")”。

    axios与jquery的区别是什么axios与jquery的区别是什么Apr 20, 2022 pm 06:18 PM

    区别:1、axios是一个异步请求框架,用于封装底层的XMLHttpRequest,而jquery是一个JavaScript库,只是顺便封装了dom操作;2、axios是基于承诺对象的,可以用承诺对象中的方法,而jquery不基于承诺对象。

    jquery怎么在body中增加元素jquery怎么在body中增加元素Apr 22, 2022 am 11:13 AM

    增加元素的方法:1、用append(),语法“$("body").append(新元素)”,可向body内部的末尾处增加元素;2、用prepend(),语法“$("body").prepend(新元素)”,可向body内部的开始处增加元素。

    jquery怎么删除div内所有子元素jquery怎么删除div内所有子元素Apr 21, 2022 pm 07:08 PM

    删除方法:1、用empty(),语法“$("div").empty();”,可删除所有子节点和内容;2、用children()和remove(),语法“$("div").children().remove();”,只删除子元素,不删除内容。

    jquery中apply()方法怎么用jquery中apply()方法怎么用Apr 24, 2022 pm 05:35 PM

    在jquery中,apply()方法用于改变this指向,使用另一个对象替换当前对象,是应用某一对象的一个方法,语法为“apply(thisobj,[argarray])”;参数argarray表示的是以数组的形式进行传递。

    jquery怎么去掉只读属性jquery怎么去掉只读属性Apr 20, 2022 pm 07:55 PM

    去掉方法:1、用“$(selector).removeAttr("readonly")”语句删除readonly属性;2、用“$(selector).attr("readonly",false)”将readonly属性的值设置为false。

    jquery on()有几个参数jquery on()有几个参数Apr 21, 2022 am 11:29 AM

    on()方法有4个参数:1、第一个参数不可省略,规定要从被选元素添加的一个或多个事件或命名空间;2、第二个参数可省略,规定元素的事件处理程序;3、第三个参数可省略,规定传递到函数的额外数据;4、第四个参数可省略,规定当事件发生时运行的函数。

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Tools

    mPDF

    mPDF

    mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    SublimeText3 Linux new version

    SublimeText3 Linux new version

    SublimeText3 Linux latest version

    SublimeText3 English version

    SublimeText3 English version

    Recommended: Win version, supports code prompts!