border-radius: 2px; }
.woocommerce .main.woo-single-product #content .type-product .images #wpb_wiz_img_id {
height: 180px; }
+ .woocommerce .main.woo-single-product #content .type-product .images .wp-post-image {
+ height: 180px; }
.woocommerce .main.woo-single-product #content .type-product .summary.entry-summary {
width: 60%; }
.woocommerce .main.woo-single-product #content .thumbnails > a {
//console.log('ul = ' + menuImg);
//console.log('menu-id = ' + menuNum);
});
-});
+});
\ No newline at end of file
<?php } ?>
</div>
</div>
+ <div id="wooImageHoverContainer">
+ <img>
+ </div>
<?php get_footer(); ?>
<script>
+$(document).ready(function () {
+ $("#tab-html5_video p").remove();
+ var mainImage = $(".attachment-shop_single.size-shop_single.wp-post-image");
+ var thumbImage = $(".attachment-shop_thumbnail.size-shop_thumbnail");
+
+ $(thumbImage).mouseover(function(){
+ $(mainImage).attr("srcset", $(this).attr("src"));
+ });
+
+ // Thumbnail undisplay
+ $(thumbImage).mouseout(function(){
+ $(mainImage).attr("srcset", $(mainImage).attr("src"));
+ });
+
+});
</script>
\ No newline at end of file