goodsinfo.js 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. function slideUp_fn()
  2. {
  3. $('.ware_cen').slideUp('slow');
  4. }
  5. jQuery(function($) {
  6. $(function(){
  7. // 默认图片尺寸,开启放大镜。
  8. var dwidth = 600;
  9. var dheight = 600;
  10. //放大镜效果/
  11. if ($(".jqzoom img").attr('jqimg'))
  12. {
  13. $(".jqzoom").jqueryzoom({ xzoom: 430, yzoom: 300, defaultwidth:dwidth, defaultheight:dheight });
  14. }
  15. // 图片替换效果
  16. $('.ware_box li').mouseover(function(){
  17. $('.ware_box li').removeClass();
  18. $(this).addClass('ware_pic_hover');
  19. var big_pic = $(this).children('img:first').attr('src');
  20. $('.big_pic img').attr('src', $(this).attr('bigimg'));
  21. $('.big_pic img').attr('jqimg', $(this).attr('bigimg'));
  22. $('.zoomdiv .bigmig').attr('src',$(this).attr('bigimg'));
  23. $("div.zoomdiv").show();
  24. bigwidth = $(".big_pic img").get(0).offsetWidth;
  25. bigheight = $(".big_pic img").get(0).offsetHeight;
  26. if( bigwidth < dwidth || bigheight < dheight ){
  27. $(".ico").hide();
  28. }else{
  29. $("div.zoomdiv").show();
  30. $(".ico").show();
  31. }
  32. });
  33. $("div.zoomdiv").show();
  34. bigwidth = $(".big_pic img").get(0).offsetWidth;
  35. bigheight = $(".big_pic img").get(0).offsetHeight;
  36. if( bigwidth < dwidth || bigheight < dheight ){
  37. $(".ico").hide();
  38. }else{
  39. $(".ico").show();
  40. }
  41. });
  42. });