优选主流主机商
任何主机均需规范使用

如何美化织梦DEDECMS提示信息框提升用户体验

你是否已经看腻了织梦官方默认的提示信息窗口?来,让你的眼睛闪亮一下,质感美化版的提示信息窗口来了!

提示效果

实现教程

打开 /include/common.func.php 找到 大概在278行的

  1. function ShowMsg(
  2. {
  3.     中间代码省略…
  4. }

 

把整个函数改成

  1. function ShowMsg($msg, $gourl, $onlymsg=0, $limittime=0)
  2. {
  3.     if(emptyempty($GLOBALS[‘cfg_plus_dir’])) $GLOBALS[‘cfg_plus_dir’] = ‘..’;
  4.     $htmlhead  = “<html>\r\n<head>\r\n<title>提示信息</title>\r\n<meta http-equiv=\”Content-Type\” content=\”text/html; charset=gb2312\” />\r\n<meta name=\”viewport\” content=\”width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no\”>\r\n<meta name=\”renderer\” content=\”webkit\”>\r\n<meta http-equiv=\”Cache-Control\” content=\”no-siteapp\” />”;
  5.     $htmlhead .= “<base target=’_self’/>\r\n<style>div{line-height:160%;}</style></head>\r\n<body leftmargin=’0′ topmargin=’0′ bgcolor=’#FFFFFF’>”.(isset($GLOBALS[‘ucsynlogin’]) ? $GLOBALS[‘ucsynlogin’] : ”).”\r\n<center>\r\n\r\n</center>\r\n</body>\r\n</html>\r\n”;
  6.     $litime = ($limittime==0 ? 1000 : $limittime);
  7.     $func = ”;
  8.     if($gourl==’-1′)
  9.     {
  10.         if($limittime==0) $litime = 5000;
  11.         $gourl = “javascript:history.go(-1);”;
  12.     }
  13.     if($gourl==” || $onlymsg==1)
  14.     {
  15.         $msg = “”;
  16.     }
  17.     else
  18.     {
  19.         //当网址为:close::objname 时, 关闭父框架的id=objname元素
  20.         if(preg_match(‘/close::/’,$gourl))
  21.         {
  22.             $tgobj = trim(preg_replace(‘/close::/’, ”, $gourl));
  23.             $gourl = ‘javascript:;’;
  24.             $func .= “window.parent.document.getElementById(‘{$tgobj}’).style.display=’none’;\r\n”;
  25.         }
  26.         $func .= ”      var pgo=0;
  27.       function JumpUrl(){
  28.         if(pgo==0){ location=’$gourl’; pgo=1; }
  29.       }\r\n”;
  30.         $rmsg = $func;
  31.         $rmsg .= “document.write(\”<style>body{background:#F6F6F6}.tips-box{margin-top:50px;padding:0;width:450px;border:10px solid #E8E8E8;background:#fff;color:#444;font-family:微软雅黑}.tips .title{margin:0 20px;padding:15px 0;border-bottom:1px dotted #DDD;text-align:left;font-size:15px}.tips .title p{padding-left:10px;height:18px;border-left:2px solid #268B26;font-weight:600;line-height:18px;margin: 0;}.tips .content{position:relative;padding:30px;height:120px;background:#fff;color:#666;font-size:15px}.tips .content p.tip{color:#999;font-size:1px}.tips .content a.go{display:block;margin:15px auto 0;padding:6px 10px;width:80px;border:1px solid #268B26;border-radius:3px;color:#268B26;text-decoration:blink;font-size:13px}.tips .content a:hover{background:#268B26;color:#fff}</style>\”);\r\n;”;
  32.         $rmsg .= “document.write(\”<div class=’tips tips-box’>”;
  33.         $rmsg .= “<div class=’title’><p>提示信息</p></div>\”);\r\n”;
  34.         $rmsg .= “document.write(\”<div class=’content’>\”);\r\n”;
  35.         $rmsg .= “document.write(\””.str_replace(“\””,”“”,$msg).”\”);\r\n”;
  36.         $rmsg .= “document.write(\””;
  37.         if($onlymsg==0)
  38.         {
  39.             if( $gourl != ‘javascript:;’ && $gourl != ”)
  40.             {
  41.                 $rmsg .= “<a href='{$gourl}’ class=’go’>点击跳转</a>”;
  42.                 $rmsg .= “<br/></div>\”);\r\n”;
  43.                 $rmsg .= “setTimeout(‘JumpUrl()’,$litime);”;
  44.             }
  45.             else
  46.             {
  47.                 $rmsg .= “<br/></div>\”);\r\n”;
  48.             }
  49.         }
  50.         else
  51.         {
  52.             $rmsg .= “<br/><br/></div>\”);\r\n”;
  53.         }
  54.         $msg  = $htmlhead.$rmsg.$htmlfoot;
  55.     }
  56.     echo $msg;
  57. }

完成!

注意:如果你有改过这个函数,记得备份一个你的再尝试!

未经允许不得转载:搬瓦工中文网 » 如何美化织梦DEDECMS提示信息框提升用户体验