Advertisement
salmancreation

YTPlayer

Nov 6th, 2015
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. jQuery(function($){
  2.  
  3. 'use strict';
  4.  
  5.  
  6.  
  7.     /* ---------------------------------------------- /*
  8.      * Preloader
  9.     /* ---------------------------------------------- */
  10.     (function () {
  11.         $(window).load(function() {
  12.             $('#pre-status').fadeOut();
  13.             $('#st-preloader').delay(350).fadeOut('slow');
  14.         });
  15.     }());
  16.  
  17.  
  18.  
  19.     /* ---------------------------------------------- /*
  20.      * YT Player
  21.     /* ---------------------------------------------- */
  22.     (function () {
  23.       // JQUERY.MB.YTPLAYER
  24.         $(function(){
  25.           $(".yt-player").mb_YTPlayer();
  26.         });
  27.  
  28.         // YT controls
  29.         $('#yt-play').click(function(event){
  30.           event.preventDefault();
  31.           if ($(this).hasClass("fa-play") ) {
  32.               $('.yt-player').playYTP();
  33.           } else {
  34.               $('.yt-player').pauseYTP();
  35.           }
  36.           $(this).toggleClass("fa-play fa-pause");
  37.           return false;
  38.         });
  39.         $('#yt-volume').click(function(event){
  40.           event.preventDefault();
  41.           $('.yt-player').toggleVolume();
  42.           $(this).toggleClass("fa-volume-off fa-volume-up");
  43.           return false;
  44.         });
  45.  
  46.     }());
  47.  
  48.    
  49. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement