Server IP : 164.52.202.56 / Your IP : 216.73.216.208 Web Server : Apache System : Linux e2e-70-56.ssdcloudindia.net 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : rubyaromatics ( 1052) PHP Version : 7.2.34 Directory (0755) : /home/rubyaromatics/public_html/controller/assets/plugins/jquery-superbox/js/ |
[ Home ] | [ Terminal ] | [ Upload File ] |
---|
/* SuperBox v1.0.0 by Todd Motto: http://www.toddmotto.com Latest version: https://github.com/toddmotto/superbox Copyright 2013 Todd Motto Licensed under the MIT license http://www.opensource.org/licenses/mit-license.php SuperBox, the lightbox reimagined. Fully responsive HTML5 image galleries. */ ;(function($) { $.fn.SuperBox = function(options) { var superbox = $('<div class="superbox-show"></div>'); var superboximg = $('<img src="" class="superbox-current-img">'); var superboxclose = $('<div class="superbox-close"></div>'); superbox.append(superboximg).append(superboxclose); return this.each(function() { $('.superbox-list').click(function() { var currentimg = $(this).find('.superbox-img'); var imgData = currentimg.data('img'); superboximg.attr('src', imgData); if($('.superbox-current-img').css('opacity') == 0) { $('.superbox-current-img').animate({opacity: 1}); } if ($(this).next().hasClass('superbox-show')) { superbox.toggle(); } else { superbox.insertAfter(this).css('display', 'block'); } $('html, body').animate({ scrollTop:superbox.position().top - currentimg.width() }, 'medium'); }); $('.superbox').on('click', '.superbox-close', function() { $('.superbox-current-img').animate({opacity: 0}, 200, function() { $('.superbox-show').slideUp(); }); }); }); }; })(jQuery);