Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. $(function() {
  2. $(window).scroll(function() {
  3. $('.wp-video-shortcode').each(function() {
  4. var str = $(this).attr('id');
  5. var arr = str.split('-');
  6. typecheck = arr[0];
  7. if ($(this).is(":in-viewport") && typecheck == "video") {
  8. var video = new MediaElementPlayer($(this).attr('id'), {
  9. success: function(mediaElement) {
  10. $(this).attr('id')[0].player.pause();
  11. console.log($(this).attr('id') + 'video is playing');
  12.  
  13. }
  14. });
  15.  
  16. //$(this).[0].play();
  17. } else {
  18. //$(this).[0].pause();
  19. }
  20.  
  21. });
  22. });
  23. });
  24.  
  25. <video class="wp-video-shortcode" id="video-1115-1" width="792" height="470" poster="http://cdn.ultrasoundoftheweek.com/post_files/uotw16.1.jpg" loop="1" preload="none" controls="controls">
  26. <source type="video/mp4" src="http://cdn.ultrasoundoftheweek.com/post_files/uotw16.1.mp4?_=1" />
  27. <source type="video/webm" src="http://cdn.ultrasoundoftheweek.com/post_files/uotw16.1.webm?_=1" />
  28. </video>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement