Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

26 lignes
738 B

  1. import $ from 'jquery';
  2. function moveTestimonialImage() {
  3. $('.has-sidebar .image-text').each(function () {
  4. var $container = $(this);
  5. var $image = $container.find('.image-text--image');
  6. var $firstParagraph = $container.find('.image-text--text blockquote p:first-child');
  7. if ($(window).width() < 768) {
  8. // Bild nach dem ersten Paragraphen einfügen
  9. $firstParagraph.after($image);
  10. } else {
  11. // Bild zurück an erste Position im Container
  12. $container.prepend($image);
  13. }
  14. });
  15. }
  16. // Beim Laden ausführen
  17. $(document).ready(function () {
  18. moveTestimonialImage();
  19. });
  20. // Bei Resize ausführen
  21. $(window).on('resize', moveTestimonialImage);