vendor/store.shopware.com/zeobvanimatedexperience/src/Resources/views/storefront/animated-wrapper.html.twig line 1

Open in your IDE?
  1. {% block animated_wrapper %}
  2.     {% if config.animatedEnabled.value and config.animatedType.value %}
  3.     <div class="animated"
  4.         data-aos="{{ config.animatedType.value }}"
  5.         {% if config.animatedOffset.value %}
  6.             data-aos-offset="{{ config.animatedOffset.value }}"
  7.         {% endif %}
  8.         {% if config.animatedDelay.value %}
  9.             data-aos-delay="{{ config.animatedDelay.value }}"
  10.         {% endif %}
  11.         {% if config.animatedDuration.value %}
  12.             data-aos-duration="{{ config.animatedDuration.value }}"
  13.         {% endif %}
  14.         {% if config.animatedEasing.value %}
  15.             data-aos-easing="{{ config.animatedEasing.value }}"
  16.         {% endif %}
  17.         {% if config.animatedMirror.value %}
  18.             data-aos-mirror="{{ config.animatedMirror.value }}"
  19.         {% endif %}
  20.         {% if config.animatedOnce.value %}
  21.             data-aos-once="{{ config.animatedOnce.value }}"
  22.         {% endif %}
  23.         {% if config.animatedOffsetAnchor.value %}
  24.             data-aos-anchor-placement="{{ config.animatedOffsetAnchor.value }}"
  25.         {% endif %}
  26.     >
  27.         {{ content|raw }}
  28.     </div>
  29.     {% else %}
  30.         {{ content|raw }}
  31.     {% endif %}
  32. {% endblock %}