xah

ac.qq.com

xah
Mar 2nd, 2017 (edited)
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.23 KB | None | 0 0
  1. <ul class="comic-contain" id="comicContain">
  2.         <script type="text/html" id="comicContainMod">
  3.             {{each list}}
  4.             <li style="width:{{aW($value.width)}}px;height:{{aH($value.width,$value.height)}}px;">
  5.                 {{if $index === 0 && firstPicState}}
  6.                <img src="{{firstPicState}}" data-pid="{{$value.pid}}" data-w="{{$value.width}}" data-h="{{$value.height}}" class="loaded" alt=""/>
  7.                <div class="for-roast"></div>
  8.                <div class="own-roast"></div>
  9.                <div class="adv-roast">
  10.                    <div class=""><sup></sup><sub></sub></div>
  11.                </div>
  12.                <span class="comic-ft">{{'1/' + list.length}}</span>
  13.                {{else}}
  14.                <div class="comic-text">
  15.                    <em>
  16.                        {{$index + 1 < 10 ? '0' + ($index + 1) : $index + 1}}
  17.                    </em>
  18.                    <span class="ico-loading">&nbsp;</span>
  19.                 </div>
  20.                 <img src="http://ac.gtimg.com/media/images/pixel.gif" alt="" data-pid="{{$value.pid}}" data-w="{{$value.width}}" data-h="{{$value.height}}"/>
  21.                 <div class="for-roast"></div>
  22.                 <div class="own-roast"></div>
  23.                 <div class="adv-roast">
  24.                     <div class=""><sup></sup><sub></sub></div>
  25.                 </div>
  26.                 <span class="comic-ft">{{$index + 1 + '/' + list.length}}</span>
  27.                 {{/if}}
  28.             </li>
  29.             {{if $index === 0 && top.pic}}
  30.            <li class="main_ad_top">
  31.                <a href="{{top.url}}" target="_blank"{{if top.width}} style="width:{{top.width}}px;height:{{top.height}}px"{{/if}}>
  32.                     <img src="{{top.pic}}" alt="{{top.title}}" id="adTop"/>
  33.                 </a>
  34.             </li>
  35.             {{/if}}
  36.             {{/each}}
  37.             {{if bottom.url}}
  38.             <li class="main_ad_bottom">
  39.                 <a href="{{bottom.url}}" target="_blank"{{if bottom.width}} style="width:{{bottom.width}}px;height:{{bottom.height}}px"{{/if}}>
  40.                     <img src="{{bottom.pic}}" alt="{{bottom.title}}" id="adBottom"/>
  41.                 </a>
  42.             </li>
  43.             {{/if}}
  44.         </script>
  45. </ul>
Add Comment
Please, Sign In to add comment