亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

又一枚精彩的彈幕效果jQuery實(shí)現(xiàn)

 更新時(shí)間:2016年07月25日 17:21:09   作者:macanfa  
精彩的彈幕效果分享給大家,具有一定的參考價(jià)值,感興趣的朋友可以嘗試制作彈幕,具體內(nèi)容如下

簡易彈幕效果:將發(fā)布的內(nèi)容隨機(jī)顯示在彈幕右側(cè),逐漸左移最后消失。

涉及知識(shí)點(diǎn):val()、random()、height()、css()、append()、remove()等,主要是元素的操作

html代碼:

<a href="#">彈幕技術(shù)</a>
  <div class="mask">
    <a href="#" class="button">X</a>
  </div>
  <!-- 底部發(fā)言框前端 -->
  <div class="bottom">
    <input class="content"></input>
    <a href="#" 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);
      //移動(dòng)到最右側(cè),直接刪除該元素
      $content.animate({right:$(document.body).width()+100},8000,function(){
        $(this).remove();
      });
    });
    $('div.button').click(function(){
      $('div.mask').hide(2000);
    });

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論