最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

javascript實(shí)現(xiàn)右下角廣告框效果

 更新時(shí)間:2017年02月01日 10:15:41   作者:Jack-小俊  
這篇文章主要為大家詳細(xì)介紹了javascript實(shí)現(xiàn)右下角廣告框效果,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文教大家用原生js實(shí)現(xiàn)的簡(jiǎn)單網(wǎng)頁主頁右下角的廣告框效果,利用好絕對(duì)定位,點(diǎn)擊X關(guān)閉廣告,里面的內(nèi)容不管動(dòng)圖或者視頻都可以。

代碼最簡(jiǎn)潔,js行為優(yōu)化版,復(fù)制粘貼即可使用。 

演示部分

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>右下角廣告框效果</title>
</head>
<style type="text/css">
  #advbox{
    width: 400px;
    height: 300px;
    position: fixed;
    right: 0;
    bottom: 0;
  }
  .adv{
    width: 380px;
    height: 270px;
    border: 1px solid #a00;
    position: relative;
  }
  #icon{
    display: block;
    width: 24px;
    height: 24px;
    color: #0c0;
    font-size: 30px;
    font-weight: bolder;
    position: absolute;
    right: 2px;
    top: 2px;
    cursor: pointer;
  }
  #resetadv{
    width: 105px;
    height:20px;
    position: fixed;
    right: 25px;
    bottom: 15px;
    color: #fff;
    font-size: 20px;
    background-color: #333;
  }
  .hide{
    display: none;
  }
  .show{
    display: block;
  }
</style>
<body>
  <div id="advbox">
    <div class="adv">
    <img src="" alt="結(jié)合html5,這可以是一個(gè)gif,swf或者video">
    <span id="icon">X</span>
    </div>
  </div>
  <div id="resetadv">廣告入口>></div>

<script type="text/javascript">
  (function(){
      //封裝一下dom的id操作
      var $ = function(id){
        return document.getElementById(id);
      };
      //添加點(diǎn)擊事件
      $("icon").onclick=function(){
        $("advbox").className = "hide";
      };
      $("resetadv").onmouseover=function(){
        $("advbox").className = "show";
      };
  })();
</script>  
</body>
</html>

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

相關(guān)文章

最新評(píng)論

隆安县| 顺平县| 乌恰县| 凤城市| 延津县| 虞城县| 竹山县| 延津县| 社会| 安泽县| 张掖市| 尖扎县| 蒙阴县| 铜陵市| 鲁甸县| 金溪县| 三亚市| 丰城市| 沂源县| 蓬溪县| 元朗区| 通许县| 临夏市| 凌源市| 界首市| 宁陵县| 云和县| 郓城县| 南阳市| 寿光市| 云霄县| 宜丰县| 石河子市| 永川市| 大丰市| 绥中县| 阳东县| 兰州市| 舞阳县| 克拉玛依市| 开封县|