Advertisement
ShopifyHacksMX

Video Banner para Shopify

Sep 5th, 2024 (edited)
2,051
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | Fixit | 0 0
  1. nombre de la sección: background-video-2
  2.  
  3. <video id="videoBanner" style=" ;width:100%;pointer-events:none"
  4. poster="{{section.settings.video_img | img_url:'1900x'}}"
  5. playsinline loop autoplay muted controls="flase">
  6. <source src=" {{section.settings.video}}" type="video/mp4">
  7. </video>
  8.  
  9.  
  10. <script>
  11. var herovide = document.getElementById('videoBanner');
  12. herovide.muted=true;
  13. herovide.controls=false;
  14. herovide.autoplay=true;
  15. herovide.load();
  16. </script>
  17.  
  18. {% schema %}
  19. {
  20. "name": "Mp4 Video",
  21. "settings": [
  22. {
  23. "type": "text",
  24. "id": "video",
  25. "label": "Mp4 Video Url",
  26. "default": "https://cdn.shopify.com/videos/c/o/v/7341d5fd6a8f491eab68fbc3a3ca8305.mp4"
  27. },
  28. {
  29. "type": "image_picker",
  30. "id": "video_img",
  31. "label": "Poster Image(that displays when video is loading)"
  32. }
  33.  
  34. ],
  35. "presets": [
  36. {
  37. "name": "Custom Mp4 Video",
  38. "category": "Custom"
  39. }
  40. ]
  41. }
  42. {% endschema %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement