Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!---- NO LOOP VIDEO BANNER - STOP ON LAST FRAME ---->
- <script>
- (function($) {
- $(document).ready(function() {
- $(this).find('video').removeAttr('loop');
- $('video').mediaelementplayer({
- autoRewind: false
- });
- });
- })(jQuery);
- </script>
- <!---- NO LOOP VIDEO BANNER - CREATE CLASS (no-loop) ---->
- <script>
- (function($) {
- $(document).ready(function() {
- $('.no-loop .et_pb_section_video_bg').each(function() {
- $(this).find('video').removeAttr('loop');
- });
- });
- })(jQuery);
- </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement