电光石火-穿越时空电光石火-穿越时空


美化ThinkPHP

 

首先我们来看看Thinkphp的模板,

 

成功界面:

201601071452136358172471.png 

 

错误页面

201601071452136400219246.png

 

说到美化的话,我们需要先找到这个模板在那里

ThinkPHP/Tpl/dispatch_jump.tpl

 

然后我们修改这里面的代码就行的。下面的模板是我自己项目修改用的。大家也可以用AJAX加载的。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>跳转提示</title>
<style type="text/css">
*{ padding: 0; margin: 0; }
body{ background: #fff; font-family: '微软雅黑'; color: #333; font-size: 16px; }
.system-message{ padding:0 0 48px;margin:150px auto;width:400px;border:5px solid #ccc;}
.system-message h3{ font-size: 50px; font-weight: normal; line-height: 120px; margin-bottom: 12px;border:1px solid #ccc}
.system-message .jump{ padding-top: 10px}
.system-message .jump a{ color: #333;}
.system-message .success,.system-message .error{ line-height: 1.8em; font-size: 23px ;text-align: center;}
.system-message .detail{ font-size: 12px; line-height: 20px; margin-top: 12px; display:none}
</style>
</head>
<body>
<div class="system-message">
<p style="height:35px;background:url(__PUBLIC__/Img/msg_top_bg.png) #ccc;padding-left:10px;line-height:35px;color:white">温馨提醒</p>
<div style="padding:24px;">
<present name="message">
<div class="success"><img style="margin-right: 9px;padding-top:10px;" src="__PUBLIC__/Img/success.png"><span><?php echo($message); ?></span></div>
<else/>
<div class="error"><img style="margin-right: 9px;padding-top:10px;" src="__PUBLIC__/Img/error.png" style="cursor:pointer;"><span style="padding-top:0px;"><?php echo($error); ?></div>
</present>
</div>
<p class="detail"></p>
<div class="jump" style="float:right;padding-right:5px;">
页面自动 <a id="href" href="<?php echo($jumpUrl); ?>">跳转</a> 等待时间: <b id="wait"><?php echo($waitSecond); ?></b>
</div>
</div>
<script type="text/javascript">
(function(){
var wait = document.getElementById('wait'),href = document.getElementById('href').href;
var interval = setInterval(function(){
var time = --wait.innerHTML;
if(time == 0) {
location.href = href;
clearInterval(interval);
};
}, 1000);
})();
</script>
</body>
</html>

然后把下面的三张图片放在Public/Img下面,就可以调用了。直接右键另存为.

201601071452136529597496.png

201601071452136530827501.png

201601071452136533882323.png

来看看修改后的弹窗

 

201601071452136585133540.png

201601071452136585202679.png

 

 

 

本博客所有文章如无特别注明均为原创。作者:似水的流年
版权所有:《电光石火-穿越时空》 => 美化ThinkPHP
本文地址:http://ilkhome.cn/index.php/archives/24/
欢迎转载!复制或转载请以超链接形式注明,文章为 似水的流年 原创,并注明原文地址 美化ThinkPHP,谢谢。

评论