custom.js 737 B

123456789101112131415161718192021222324
  1. $(document).ready(function () {
  2. $("#brand-logo").owlCarousel({
  3. autoPlay: 3000, //Set AutoPlay to 3 seconds
  4. items: 6,
  5. itemsDesktop: [1199, 6],
  6. itemsDesktopSmall: [979, 6]
  7. });
  8. $('.select2').select2();
  9. if ($('#thumbnails li img').length > 0) {
  10. $('#thumbnails li img').on('click', function () {
  11. $('#main-image')
  12. .attr('src', $(this).attr('src') +'?w=400')
  13. .attr('data-zoom', $(this).attr('src') +'?w=1200');
  14. });
  15. }
  16. $(".img-orderDetail").mouseover(function() {
  17. $(this).css({ width: '150px', height: '150px' });
  18. }).mouseout(function() {
  19. $(".img-orderDetail").css({ width: '50px', height: '50px'});
  20. });
  21. });