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

javascript實現(xiàn)簡單的頁面右下角提示信息框

 更新時間:2015年07月31日 11:27:28   投稿:hebedich  
本文給大家分享的是使用javascript實現(xiàn)簡單的頁面右下角提示信息框的方法和示例代碼,有需要的小伙伴可以參考下。

由于之前找到一個開源的很好用,可以固定在瀏覽器的右下角;兼容性也很好;加上之后影響到應用的一個小功能點,決定重寫一個;這個只能固定在當前頁面的右下加,系統(tǒng)是上下結構滿足需求,沒在繼續(xù)擴展;
兩個函數:
1.lay -- 設置提示框高寬(可選)
2.show -- 設置標題,內容,和停留時間

notice.js

var time;
var delayTime;
$(function(){
  // 增加浮動DIV
  $('body').append("<div id='notice' onselectstart='return false'><span class='notice_title'>&nbsp;</span><span class='cbtn'>[關閉]</span><div class='notice_content'></div></div>");
   
  // 更改樣式
  $('#notice').css({right:"0",bottom:"0",cursor:"default",position:"fixed","background-color":"#CFDEF4",color:"#1F336B","z-index":"999",border:"1px #1F336B solid",margin:"2px",padding:"10px","font-weight":"bold","line-height":"25px",display:"none"});
  $('#notice .cbtn').css({color:"#FF0000",cursor:"pointer","padding-right":"5px",float:"right",position:"relative"});
  $('#notice .notice_content').css({margin:"3px","font-weight":"normal",border:"1px #B9C9EF solid","line-height":"20px","margin-bottom":"10px",padding:"10px"});
   
  /* 綁定事件*/
  $('#notice').hover(
    function(){
      $(this).stop(true,true).slideDown();
      clearTimeout(time);
    },
    function(){
      time = setTimeout('_notice()',delayTime);
    }
  );
   
  //綁定關閉事件
  $('.cbtn').bind('click',function(){
    $('#notice').slideUp('fast');
    clearTimeout(time);
  });
});
$.extend({
  lay:function(_width,_height){
    $('#notice').css({width:_width,height:_height});
  },
  show:function(_title,_msg,_time){
     delayTime = _time;
     $('.notice_title').html(_title);
     $('.notice_content').html(_msg);
     $('#notice').slideDown(2000);
     time = setTimeout('_notice()',delayTime);
  },
});
function _notice(){
  $('#notice').slideUp(2000);
}

index.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
 <head>
  <title>index.html</title>
   
  <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"/>
  <meta http-equiv="description" content="this is my page"/>
  <meta http-equiv="content-type" content="text/html; charset=GBK"/>
   
  <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
 
 </head>
  
 <body onload='initPage();'>
 </body>
 <script type="text/javascript">
  function initPage(){
    var returnMsg = "<p>信息1 jquery-1.7.2.min.js</p><p>信息2 notice.js</p><p>信息3</p>";
    $.show('提示信息',returnMsg,10000);
  }
 </script>
 <script src="jquery-1.7.2.min.js" type="text/javascript" ></script>
 <script src="notice.js" type="text/javascript" ></script>
</html>

以上所述就是本文的全部內容了,希望大家能夠喜歡。

相關文章

最新評論

秦安县| 凤庆县| 大关县| 独山县| 平远县| 商城县| 廉江市| 铁力市| 鄂尔多斯市| 鱼台县| 陆川县| 逊克县| 华池县| 婺源县| 墨江| 宜城市| 新河县| 勐海县| 龙江县| 腾冲县| 昌黎县| 县级市| 安丘市| 平利县| 全南县| 白朗县| 新巴尔虎左旗| 五寨县| 潢川县| 黑水县| 大兴区| 台山市| 辽中县| 文化| 高邮市| 嘉禾县| 巴马| 永和县| 建平县| 康平县| 新巴尔虎左旗|