app/template/default/Block/artPicked.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. {% block javascript %}
  9. <script>
  10.   $(function () {
  11.     $('#js-slider-2').slick({
  12.       arrows: true, // 前・次のボタンを表示する
  13.       speed: 500, // スライドさせるスピード(ミリ秒)
  14.       slidesToShow: 4, // 表示させるスライド数
  15.       centerMode: true, // slidesToShowが奇数のとき、現在のスライドを中央に表示する
  16.       variableWidth: true, // スライド幅の自動計算を無効化
  17.     });
  18.   });
  19. </script>
  20. {% endblock %}
  21. {% block stylesheet %}
  22.     <style>
  23.     .pickedCard {
  24.       width: auto;
  25.       height: auto;
  26.     }
  27.     .img-wrap {
  28.       width: 300px;
  29.       height: 400px;
  30.     }
  31.     .img {
  32.       width: auto;
  33.       max-width: 100%;
  34.       height: auto;
  35.       max-height: 400px;
  36.     }
  37.     </style>
  38. {% endblock %}
  39. <div class="ec-role">
  40.   <div class="ec-secHeading">
  41.     <div class="component-title">注目の作品</div>
  42.     <h4 class="mt-5px">販売中の人気現代アート作品をご覧いただけます</h4>
  43.   </div>
  44.   <ul class="slider-2" id="js-slider-2">
  45.     {% for product in products %}
  46.     {% if product.ProductImage[0] is defined %}
  47.     <li>
  48.       <div class="ec-newItemRole__listItem pickedCard">
  49.           <a href="{{ url('product_detail', {'id': product.id}) }}" class="text-decoration">
  50.               {# 最初の一枚だけで #}
  51.               <div class="img-wrap"><img class="img" src="{{ asset(product.ProductImage[0], 'save_image') }}" /></div>
  52.               <p class="ec-newItemRole__listItemTitle fontWeightBold">{{ product.name|trans }}</p>
  53.               <p class="ec-newItemRole__listItemPrice fontWeightBold">¥{{ product.getPrice02IncTaxMax|trans }}(税込)</p>
  54.           </a>
  55.           {# 画像全部表示させたい時 #}
  56.           {# {% for productImage in product.ProductImage %}
  57.             <div><img src="{{ asset(productImage, 'save_image') }}" /></div>
  58.           {% endfor %} #}
  59.       </div>
  60.     </li>
  61.     {% endif %}
  62.     {% endfor %}
  63.   </ul>
  64. </div>