php 仿Comsenz安装效果代码打包提供下载
2015-01-24信息快讯网
一直都觉得Comsenz产品的数据表安装效果很漂亮,今天抽了个空,把它的核心代码都提炼出来了。
最终的效果如下:step.inc.php 安装步骤效果类:
/** * step.inc.php 安装步骤效果类 * * 从Comsenz产品的数据表安装效果中提取出主要代码,以供大家学习 * @author tianxin * @version 1.0.0 * */ class StepClass { function show_header() { define('SHOW_HEADER', TRUE); $step = 1; $version = 'beta1.0'; $release = '20100223'; $install_lang = '简体中文UTF8版'; $title = '仿Comsenz安装'; $charset = 'uft-8'; echo <<<EOT <!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=$charset" /> <title>$title</title> <link rel="stylesheet" href="style.css" type="text/css" media="all" /> <script type="text/javascript"> function $(id) { return document.getElementById(id); } function showmessage(message) { $('notice').value += message + "\\r\\n"; } </script> <meta content="Comsenz Inc." name="Copyright" /> </head> <div class="container"> <div class="header"> <h1>$title</h1> <span>$version $install_lang $release</span> EOT; $step > 0 && $this->show_step($step); } function show_step($step) { $laststep = 4; $title = '仿Comsenz安装'; $comment = '正在执行操作'; $stepclass = array(); for($i = 1; $i <= $laststep; $i++) { $stepclass[$i] = $i == $step ? 'current' : ($i < $step ? '' : 'unactivated'); } $stepclass[$laststep] .= ' last'; echo <<<EOT <div class="setup step{$step}"> <h2>$title</h2> <p>$comment</p> </div> <div class="stepstat"> <ul> <li class="$stepclass[1]">1</li> <li class="$stepclass[2]">2</li> <li class="$stepclass[3]">3</li> <li class="$stepclass[4]">4</li> </ul> <div class="stepstatbg stepstat1"></div> </div> </div> <div class="main"> EOT; } function show_install() { ?> <script type="text/javascript"> function showmessage(message) { document.getElementById('notice').value += message + "\r\n"; } function initinput() { window.location='http://www.jb51.net'; } </script> <div class="main"> <div class="btnbox"><textarea name="notice" style="width: 80%;" readonly="readonly" id="notice"></textarea></div> <div class="btnbox marginbot"> <input type="button" name="submit" value="正在执行……" disabled style="height: 25" id="laststep" onclick="initinput()"> </div> <?php } function runquery() { for($i=1;$i<=15;$i++) { $this->showjsmessage('执行操作'.' '.$i.' ... '.'成功'); //模拟每执行完一个动作的延时 sleep(1); } } function showjsmessage($message) { echo '<script type="text/javascript">showmessage(\''.addslashes($message).' \');</script>'."\r\n"; flush(); ob_flush(); } function show_footer($quit = true) { echo <<<EOT <div class="footer">©2001 - 2010 <a href="http://www.jb51.net/">甜心</a> 瑶瑶说杀很大.</div> </div> </div> </body> </html> EOT; $quit && exit(); } }
调用方法:
header('Content-Type: text/html; charset=utf-8'); include('step.inc.php'); $step=new StepClass(); //显示页面头部 $step->show_header(); //显示操作进度 $step->show_install(); //运行操作 $step->runquery(); echo '<script type="text/javascript">document.getElementById("laststep").disabled=false;document.getElementById("laststep").value = \'执行完所有操作,进入下一步\';</script>'."\r\n"; //显示页面尾部 $step->show_footer();
完整的demo:stepdemo.rar
linux iconv方法的使用
linux系统上支持php的 iconv()函数的方法
php json_encode奇怪问题说明
php中json_encode中文编码问题分析
PHP setcookie指定domain参数后,在IE下设置cookie失效的解决方法
PHP session会话的安全性分析
PHP IF ELSE简化/三元一次式的使用
PHP表单验证的3个函数ISSET()、empty()、is_numeric()的使用方法
phpmyadmin安装时提示:Warning: require_once(./libraries/common.inc.php)错误解决办法
PHP-CGI进程CPU 100% 与 file_get_contents 函数的关系分析
php中使用Curl、socket、file_get_contents三种方法POST提交数据
不支持fsockopen但支持culr环境下下ucenter与modoer通讯问题
php数据结构 算法(PHP描述) 简单选择排序 simple selection sort
兼容firefox,chrome的网页灰度效果
php设计模式 Command(命令模式)
php设计模式 Composite (组合模式)
php 获取本机外网/公网IP的代码
php ob_flush,flush在ie中缓冲无效的解决方法
php 获取select下拉列表框的值
PHP5中使用DOM控制XML实现代码
php源码加密 仿微盾PHP加密专家(PHPCodeLock)
PHP中冒号、endif、endwhile、endfor使用介绍
PHP 开发环境配置(Zend Studio)
PHP 开发环境配置(Zend Server安装)
php file_get_contents函数轻松采集html数据
php array_search() 函数使用
php读取javascript设置的cookies的代码
PHP iconv 解决utf-8和gb2312编码转换问题
用PHP实现读取和编写XML DOM代码
php session和cookie使用说明
mysql From_unixtime及UNIX_TIMESTAMP及DATE_FORMAT日期函数
用PHP获取Google AJAX Search API 数据的代码
了解Joomla 这款来自国外的php网站管理系统
php 修改zen-cart下单和付款流程以防止漏单
PHP生成网页快照 不用COM不用扩展.