2

我有一个带有产品网格视图的小型电子商务网站,其中包含:

.product-image
.product-price
.product-name

在主产品页面中,它包含与上述相同的类,另外:

.product-discount

我在网格视图上尝试做的是在鼠标悬停.product-discount时显示标签。.product-image

我只想知道如何悬停类标签。我努力了:

.product-image:hover { something that would call the .product-discount; }

在此处输入图像描述

4

2 回答 2

2

伪类不必是尾随部分。所以这是有效的,应该可以工作:

.product-image .product-discount { visibility:hidden; } /* make sure it takes up space (for whatever reason) */
.product-image:hover .product-discount{ visibility:visible; }
于 2012-10-07T06:38:54.763 回答
0

尝试这个

jQuery('.product-image').bind('hover', function(){ 
    jQuery('.product-discount').show(); 
}
于 2012-10-07T07:23:52.070 回答