テキスト
2008-09-21 この記事のカテゴリー:メモ この記事へのコメント:6
EC CUBE に Lightbox2 を導入する方法。忘れないようにメモ。
下記は、アップロード先を、 html/user_date/lightbox にした場合。状況によって要修正。
Lightbox2 を DL して解凍して、出来たフォルダ名を「lightbox」に変更、構成はこんな感じ。
lightbox
├ css
├ images
├ js
lightbox/js/lightbox.js の49行目付近にある、画像パスを修正 ( 絶対パスで記述 )。
修正前fileLoadingImage: 'images/loading.gif',
fileBottomNavCloseImage: 'images/closelabel.gif',
修正後
fileLoadingImage: 'http://***.**.**/user_data/lightbox/images/loading.gif',
fileBottomNavCloseImage: 'http://***.**.**/user_data/lightbox/images/closelabel.gif',
※ http://***.**.** はショップ URL 。
「lightbox」フォルダごと、html/user_date ディレクトリ内へ場所へアップロード。
( html/user_date/lightbox となる )
lightbox2.0 を動かすための記述を、以下のテンプレートに。
head 〜 head 内、date/Smarty/templates/テンプレ名/site_frame.tpl 35行目付近に追加
<script type="text/javascript" src="<!--{$smarty.const.URL_DIR}--><!--{$smarty.const.USER_DIR}-->lightbox/js/prototype.js"></script>
<script type="text/javascript" src="<!--{$smarty.const.URL_DIR}--><!--{$smarty.const.USER_DIR}-->lightbox/js/scriptaculous.js?load=effects,builder"></script>
<script type="text/javascript" src="<!--{$smarty.const.URL_DIR}--><!--{$smarty.const.USER_DIR}-->lightbox/js/lightbox.js"></script>
<link rel="stylesheet" href="<!--{$smarty.const.URL_DIR}--><!--{$smarty.const.USER_DIR}-->lightbox/css/lightbox.css" type="text/css" media="screen" />
商品説明ページ、date/Smarty/templates/テンプレ名/detail.tpl 61行目付近を修正
修正前<a href="javascript:void(win01('./detail_image.php?product_id=<!--{$arrProduct.product_id}-->&image=main_large_image<!--{if $smarty.get.admin == 'on'}-->&admin=on<!--{/if}-->','detail_image','<!--{$arrFile.main_large_image.width+60}-->', '<!--{$arrFile.main_large_image.height+80}-->'))">
<img src="<!--{$arrFile[$key].filepath}-->" width="<!--{$arrFile[$key].width}-->" height="<!--{$arrFile[$key].height}-->" alt="<!--{$arrProduct.name|escape}-->" class="picture" />
</a>
修正後
<a href="<!--{$arrFile.main_large_image.filepath}-->" rel="lightbox">
<img src="<!--{$arrFile[$key].filepath}-->" width="<!--{$arrFile[$key].width}-->" height="<!--{$arrFile[$key].height}-->" alt="<!--{$arrProduct.name|escape}-->" class="picture" />
</a>
いじょう!
この記事の固定リンク : http://mimizu.org/text/memo/item_289.html
http://mimizu.org/text/member/sakura.html
http://mimizu.org/text/member/sakura.html
http://mimizu.org/text/member/sakura.html