Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- jQuery(function($){
- 'use strict';
- /* ---------------------------------------------- /*
- * Preloader
- /* ---------------------------------------------- */
- (function () {
- $(window).load(function() {
- $('#pre-status').fadeOut();
- $('#st-preloader').delay(350).fadeOut('slow');
- });
- }());
- /* ---------------------------------------------- /*
- * YT Player
- /* ---------------------------------------------- */
- (function () {
- // JQUERY.MB.YTPLAYER
- $(function(){
- $(".yt-player").mb_YTPlayer();
- });
- // YT controls
- $('#yt-play').click(function(event){
- event.preventDefault();
- if ($(this).hasClass("fa-play") ) {
- $('.yt-player').playYTP();
- } else {
- $('.yt-player').pauseYTP();
- }
- $(this).toggleClass("fa-play fa-pause");
- return false;
- });
- $('#yt-volume').click(function(event){
- event.preventDefault();
- $('.yt-player').toggleVolume();
- $(this).toggleClass("fa-volume-off fa-volume-up");
- return false;
- });
- }());
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement