source: branches/version-2_13-dev/html/install/templates/install_frame.tpl @ 23312

Revision 23312, 3.2 KB checked in by kimoto, 10 years ago (diff)

#2484 loading画像を呼び出してボタンを2度押しできないようにする

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-smarty-template; charset=UTF-8
Line 
1<!--{*
2 * This file is part of EC-CUBE
3 *
4 * Copyright(c) 2000-2013 LOCKON CO.,LTD. All Rights Reserved.
5 *
6 * http://www.lockon.co.jp/
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21 *}-->
22<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
23<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja">
24<head>
25<meta http-equiv="Content-Type" content="text/html; charset=<!--{$smarty.const.CHAR_CODE}-->" />
26<meta http-equiv="content-script-type" content="text/javascript" />
27<meta http-equiv="content-style-type" content="text/css" />
28<link rel="stylesheet" href="css/admin_contents.css" type="text/css" media="all" />
29<link rel="stylesheet" href="../js/jquery.colorbox/colorbox.css" type="text/css" media="all" />
30<script type="text/javascript" src="../js/jquery-1.4.2.min.js"></script>
31<script type="text/javascript" src="../js/eccube.js"></script>
32<script type="text/javascript" src="../js/jquery.colorbox/jquery.colorbox-min.js"></script>
33
34<style type="text/css">
35#loading{
36  width: 100%;
37  height: 100%;
38  background-color:#FFFFFF;
39  filter:alpha(opacity=85);
40  -moz-opacity:0.85;
41  -khtml-opacity: 0.85;
42  opacity:0.85;
43  position: fixed;
44  _position: absolute; /* forIE6 */
45  display: none;
46  top: 0;
47  left: 0;
48  z-index: 10000;
49}
50#loading img {
51  width: 48px;
52  height: 48px;
53  position: absolute;
54  top: 50%;
55  left: 50%;
56  margin-top: -24px;
57  margin-left: -24px;
58}
59</style>
60<script type="text/javascript">//<![CDATA[
61$(function(){
62    $('.btn-next').click(function(e) {
63      e.preventDefault();
64      $('form').submit();
65      $('#loading').show();
66      });
67    });
68//]]></script>
69<title>EC-CUBEインストール</title>
70</head>
71<body>
72<!--{$GLOBAL_ERR}-->
73<noscript>
74  <p>JavaScript を有効にしてご利用下さい。</p>
75</noscript>
76<div id="loading"><img src="../js/jquery.colorbox/loading.gif" width="48" height="48" alt="Loading..." /></div>
77<div id="outside">
78  <div id="out-wrap">
79    <div class="logo">
80      <img src="img/logo_resize.jpg" width="99" height="15" alt="EC-CUBE" />
81    </div>
82    <div id="out-area">
83      <div class="out-top"></div>
84      <!--{include file=$tpl_mainpage}-->
85    </div>
86    <!--{if strlen($install_info_url) != 0}-->
87    <div id="info-area">
88      <iframe src="<!--{$install_info_url}-->" width="562" height="550" frameborder="no" scrolling="no">
89        こちらはEC-CUBEからのお知らせです。この部分は iframe対応ブラウザでご覧下さい。
90      </iframe>
91    </div>
92    <!--{/if}-->
93  </div>
94</div>
95</body>
96</html>
Note: See TracBrowser for help on using the repository browser.