いつもお世話になります
PC表示はできたのですが、スマートフォンAパターンをスマホ商品ページ共通説明文に挿入しましたが表示されないんです
※クーポンurl、画像はpc共通の正方形280x280です。
また、バナークリックよりページが離脱してしまう(pc)ので
別ウィンドウにて開く target="_blank"は、可能でしょうか?
よろしくお願いします
↓
<input type="checkbox" name="modal" id="modal" ="" checked>
<label id="modallabel" for="modal" ="">
<div ="">
<a href="
https://coupon.rakuten.co.jp/getCoupon?getkey=SUFUTi1XUTRFLUFZUlotN1BORA--&rt="><img src="
https://image.rakuten.co.jp/SHOP-URL/cabinet/05901484/1bn882.jpg"></a>
</div ="">
</label ="">
<script ="">
jQuery(function($){
var k = 'modal';
var v = 'done';
if( localStorage.getItem(k) !== v ) $('#modal').prop('checked',false);
$('#modallabel, #modallabel a').click(function(){ localStorage.setItem(k,v); });
});
</script ="">
<style ="">
p{
margin:0 auto;}
input#modal {
display: none;
}
input#modal label {
width: 100%;
height: 120%;
position: fixed;
top: 147px;
bottom: 0;
left: 0;
right: 0;
z-index: 2147483646;
background: rgba(0, 0, 0, 0.5);
cursor: pointer;
}
input#modal label div {
background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
border: medium none;
position: fixed;
width: 300px; /*280*/
height:330px; /*280*/
bottom: 0;
left: 0;
margin: 15% auto;
position: fixed;
right: 0;
top: 120px;
}
input#modal label div::before {
content: "× Close";
position: absolute;
bottom: -25%;
right: 50%;
margin: 0 -60px 0 0;
font-size: 3em;
font-weight: bold;
color: #ffffff;
}
input#modal:checked label {
display: none;
}
input#modal label img{
width: 300px; /*280*/
height:330px; /*280*/
}
</style ="">