jQuery獲取瀏覽器類型和版本號的方法
655
2024-02-25
簡易彈幕效果:將發(fā)布的內(nèi)容隨機(jī)顯示在彈幕右側(cè),逐漸左移最后消失。
涉及知識點(diǎn):val()、random()、height()、css()、append()、remove()等,主要是元素的操作
html代碼:
<a >彈幕技術(shù)</a> <div class="mask"> <a class="button">X</a> </div> < 底部發(fā)言框前端 --> <div class="bottom"> <input class="content"></input> <a class="send">發(fā)表言論</a> </div>
css代碼:
html,body{ background-image:url("images/208.jpg"); height:100%;//文字的顯示區(qū)域要設(shè)置好 } div.mask{ position:fixed; width:100%; height:100%; background-color:black; opacity:0.5; top:0px; left:0px; } div.bottom{ width:100%; height:77px; background-color:#090909; position:fixed; bottom:0px; left:0px; text-align:center; line-height:77px; } div.bottom input.content{ width:605px; height:37px; border:none; border-radius:10px 0px 0px 10px; font-size:16px; font-family:'Microsoft Yahei'; } div.bottom a.send{ background-color:green; color:#fff; display:inline-block; width:150px; height:40px; line-height:37px; text-align:center; position:relative; left:-10px; top:-2px; border-radius:0px 10px 10px 0px; text-decoration:none; font-family:'Microsoft Yahei'; } div.mask a.button{ width:50px; height:50px; border-radius:30px; background-color:#660000; color:#fff; position:fixed; top:20px; right:20px; text-align:center; line-height:50px; font-size:30px; font-family:'Microsoft Yahei'; border:1px solid #fff; text-decoration:none; cursor:pointer; } div.text{ color:#fff; position:fixed; right:0px; font-size:20px; white-space: nowrap; }
jQuery代碼:
$('a.send').click(function(){ //獲取內(nèi)容,創(chuàng)建新元素,并設(shè)置位置追加到目標(biāo)元素中 var val=$('input.content').val(); var $content=$('<div class="text">'+val+'</div>'); var top=Math.random()*$(document.body).height()-77; $content.css('top',top); $('div.mask').append($content); //移動到最右側(cè),直接刪除該元素 $content.animate({right:$(document.body).width()+100},8000,function(){ $(this).remove(); }); }); $('div.button').click(function(){ $('div.mask').hide(2000); });
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持綠夏網(wǎng)。
#免責(zé)聲明#
本站[綠夏技術(shù)導(dǎo)航]提供的一切軟件、教程和內(nèi)容信息僅限用于學(xué)習(xí)和研究目的;不得將上述內(nèi)容用于商業(yè)或者非法用途,否則,一切后果請用戶自負(fù)。本站信息來自網(wǎng)絡(luò)收集整理,版權(quán)爭議與本站無關(guān)。您必須在下載后的24個小時之內(nèi),從您的電腦或手機(jī)中徹底刪除上述內(nèi)容。如果您喜歡該程序或內(nèi)容,請支持正版,購買注冊,得到更好的正版服務(wù)。我們非常重視版權(quán)問題,如有侵權(quán)請郵件[admin@lxwl520.com]與我們聯(lián)系進(jìn)行刪除處理。敬請諒解!