This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ▼ 2つ目のカウントダウンタイマー | |
| function CDT2() { | |
| var myD = Date.now(); // 1970/1/1午前0時から現在までのミリ秒 | |
| var start = new Date('2021-12-15T00:00+09:00'); // 開始日時の指定 | |
| var myS = start.getTime(); // 1970/1/1午前0時からの開始日時までのミリ秒 | |
| var end = new Date('2022-12-15T23:59+09:00'); // 終了日時の指定 | |
| var myE = end.getTime(); // 1970/1/1午前0時から終了日時までのミリ秒 | |
| // 今日が開始日前か期間中か終了日後かの判別 | |
| if (myS <= myD && myE >= myD) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 1つ目のカウントダウンタイマー --> | |
| <div class="cdt_wrapper"> | |
| <div class="cdt"> | |
| <span class="cdt_txt" id="cdt_txt"></span> | |
| <span class="cdt_date" id="cdt_date"></span> | |
| </div> | |
| </div> | |
| <br> | |
| <!-- 2つ目のカウントダウンタイマー --> | |
| <div class="cdt_wrapper"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <a href="https://event.rakuten.co.jp/campaign/card/pointday/" target="_blank" class="card_pt5_entry"> | |
| <img src="banner.jpg"> | |
| </a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var today = new Date, | |
| day = today.getDate(), | |
| month = today.getMonth() + 1, | |
| nextmonth = today.getMonth() + 2, | |
| year = today.getFullYear(), | |
| nextyear = today.getFullYear() + 1, | |
| // 5日のセール終了から10日のセール開始まで | |
| startDay1 = 6, | |
| endDay1 = 10, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Title */ | |
| .slider_ttl { | |
| color: #333; | |
| text-align: inherit; | |
| width: 100%; | |
| height: 40px; | |
| line-height: 40px; | |
| padding: inherit; | |
| margin: 0 0 20px 0; | |
| background-color: #e5e5e5; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .horizontal_scroll { | |
| overflow-x: scroll; | |
| -webkit-overflow-scrolling: touch; | |
| padding: 0 0 12px 8px; | |
| display : -ms-flexbox ; | |
| display: flex; } | |
| /* Cancel horizontal scrolling when screen width is 768px or more */ | |
| @media screen and (min-width: 768px) { | |
| .horizontal_scroll { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ul class="horizontal_scroll"> | |
| <li> | |
| <a href=""><img src=""></a> | |
| < div > caption </ div > | |
| </li> | |
| <!- After that, repeat any number of <li> </ li> -> | |
| </ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #bottom_bnr { | |
| z-index: 9001; | |
| position: fixed; | |
| bottom: 0; | |
| width: 100% | |
| } | |
| #bottom_bnr label { | |
| display: block; | |
| z-index: 9002; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="bottom_bnr"> | |
| <input id="toggle" type="checkbox"> | |
| <label class="toggle-switch" for="toggle"></label> | |
| <div> | |
| <a href="リンク先URL"><img src="バナー画像URL" alt="..."></a> | |
| </div> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="fivezeroday"> | |
| <img src="xxxxx.jpg"> | |
| </div> |
NewerOlder