前端6班-裘曾渊 右下角广告

2015-11-22  本文已影响0人  饥人谷_裘曾渊

重点

position:fixed ; right:0; bottom:0 
    $("clickMe").onmouseover= function(){//鼠标移入事件
            $("showPic").className = "show";
            $('closeBtn').style.display = 'block';
        }
        
    $("closeBtn").onclick= function(){//鼠标点击事件
          $("closeBtn").className = "hide";
          $("showPic").className = "hide";
    }
var $ = function(id){
    return document.getElementById(id);   
   }
上一篇 下一篇

猜你喜欢

热点阅读