商品詳細
1990年7月に完成し、「日本一長い滑り台」として話題になった前橋市富士見町の「SUBARUふれあいの森 赤城」の木製ローラー滑り台が昨年6月以降、うんたらかんたら。IEチェックこわい。
遷移版
ボタン
<a href="#differentColors" class="btn btn-outline-secondary btn-sm float-right mt0 mb0 pagelink">色違いアイテム</a>
色違い遷移先コンテンツ
<div id="differentColors" class="contents">
<h3 class="first">色違いアイテム</h3>
<table class="tblCommonB">
<tbody>
<tr>
<td class="thumb differentColors--Thumb">
<img src="https://locopay.jpn.org/common/img/DUMMY/bnr_250x250.png">
</td>
<td>ロコアカラー<small>(サプライヤーカラー)</small></td>
<td class="w10 text-right"><a class="btn btn-outline-primary btn-sm" href="#リンク先">詳細</a></td>
</tr>
<tr>
<td class="thumb differentColors--Thumb">
<img src="https://locopay.jpn.org/common/img/DUMMY/bnr_250x250.png">
</td>
<td>オレンジ<small>(orange)</small></td>
<td class="w10 text-right"><a class="btn btn-outline-primary btn-sm" href="#リンク先">詳細</a></td>
</tr>
<tr>
<td class="thumb differentColors--Thumb">
<img src="https://locopay.jpn.org/common/img/DUMMY/bnr_250x250.png">
</td>
<td>ブルー<small>(blr)</small></td>
<td class="w10 text-right"><a class="btn btn-outline-primary btn-sm" href="#リンク先">詳細</a></td>
</tr>
</tbody>
</table>
</div>
モーダル版
ボタン
<button id="trg-differentColors-modal" type="button" class="btn btn-outline-secondary btn-sm float-right mt0 mb0">色違いアイテムモーダル</button>
モーダルコンテンツ
<div class="remodal differentColors-remodal" data-remodal-id="differentColors-remodal" data-remodal-options="hashTracking: false">
<table class="tblCommonB">
<tbody>
<tr>
<td class="thumb differentColors--Thumb">
<img src="https://locopay.jpn.org/common/img/DUMMY/bnr_250x250.png">
</td>
<td class="text-left">ロコアカラー<small>(サプライヤーカラー)</small></td>
<td class="w10 text-right"><a class="btn btn-outline-primary btn-sm" href="#リンク先">詳細</a></td>
</tr>
<tr>
<td class="thumb differentColors--Thumb">
<img src="https://locopay.jpn.org/common/img/DUMMY/bnr_250x250.png">
</td>
<td class="text-left">オレンジ<small>(orange)</small></td>
<td class="w10 text-right"><a class="btn btn-outline-primary btn-sm" href="#リンク先">詳細</a></td>
</tr>
<tr>
<td class="thumb differentColors--Thumb">
<img src="https://locopay.jpn.org/common/img/DUMMY/bnr_250x250.png">
</td>
<td class="text-left">ブルー<small>(blr)</small></td>
<td class="w10 text-right"><a class="btn btn-outline-primary btn-sm" href="#リンク先">詳細</a></td>
</tr>
<tr>
<td class="thumb differentColors--Thumb">
<img src="https://locopay.jpn.org/common/img/DUMMY/bnr_250x250.png">
</td>
<td class="text-left">ロコアカラー<small>(サプライヤーカラー)</small></td>
<td class="w10 text-right"><a class="btn btn-outline-primary btn-sm" href="#リンク先">詳細</a></td>
</tr>
<tr>
<td class="thumb differentColors--Thumb">
<img src="https://locopay.jpn.org/common/img/DUMMY/bnr_250x250.png">
</td>
<td class="text-left">ロコアカラー<small>(サプライヤーカラー)</small></td>
<td class="w10 text-right"><a class="btn btn-outline-primary btn-sm" href="#リンク先">詳細</a></td>
</tr>
<tr>
<td class="thumb differentColors--Thumb">
<img src="https://locopay.jpn.org/common/img/DUMMY/bnr_250x250.png">
</td>
<td class="text-left">ロコアカラー<small>(サプライヤーカラー)</small></td>
<td class="w10 text-right"><a class="btn btn-outline-primary btn-sm" href="#リンク先">詳細</a></td>
</tr>
</tbody>
</table>
</div>
モーダル内をスクロールにするためにstyleで
height:80vh;
overflow-y:scroll;
を当てる必要がある。 今回は differentColors-remodal というclassに対してあてている。
height:80vh;
overflow-y:scroll;
を当てる必要がある。 今回は differentColors-remodal というclassに対してあてている。
js(モーダルが動く形であればなんでも良い)
$(function() {
$('#trg-differentColors-modal').on('click',function(){
$('[data-remodal-id=differentColors-remodal]').remodal().open(); //リモーダル開く
});
});