videobg-demo.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. $(function() {
  2. "use strict";
  3. $('.video-example-1').videoBG({
  4. mp4: '../assets/image-resources/video/tablet.mp4',
  5. ogv: '../assets/image-resources/video/tablet.ogv',
  6. webm: '../assets/image-resources/video/tablet.webm',
  7. //poster:'../assets/image-resources/dummy.jpg',
  8. scale: true,
  9. opacity: 1,
  10. position: "relative",
  11. height: '100%',
  12. width: '100%',
  13. zIndex: 0
  14. });
  15. });
  16. $(function() {
  17. "use strict";
  18. $('.video-example-2').videoBG({
  19. mp4: '../assets/image-resources/video/cars.mp4',
  20. ogv: '../assets/image-resources/video/cars.ogv',
  21. webm: '../assets/image-resources/video/cars.webm',
  22. //poster:'../assets/image-resources/dummy.jpg',
  23. scale: true,
  24. opacity: 1,
  25. position: "relative",
  26. height: '100%',
  27. width: '100%',
  28. zIndex: 0
  29. });
  30. });
  31. $(function() {
  32. "use strict";
  33. $('.video-example-3').videoBG({
  34. mp4: '../assets/image-resources/video/sun.mp4',
  35. ogv: '../assets/image-resources/video/sun.ogv',
  36. webm: '../assets/image-resources/video/sun.webm',
  37. //poster:'../assets/image-resources/dummy.jpg',
  38. scale: true,
  39. opacity: 1,
  40. position: "relative",
  41. height: '100%',
  42. width: '100%',
  43. zIndex: 0
  44. });
  45. });
  46. $(function() {
  47. "use strict";
  48. $('video,audio').each(function() {
  49. this.muted = true
  50. });
  51. });