css 淡化产品图像上的文本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 淡化产品图像上的文本相关的知识,希望对你有一定的参考价值。

// Fade Text on Product List Hover
jQuery("body.nextProductList div.tileContent").hover(function() {
    jQuery(this).children('body.nextProductList a.nextProdName').fadeToggle().css('display', 'block');
    jQuery(this).children('body.nextProductList div.tileContent div.nextStatus').fadeToggle();
});
/* Product List Product Styles */
body.nextProductList div.tileContent {
    position: relative;
}

body.nextProductList a.nextProdName {
    position: absolute;
    top: 10px;
    padding-left: 10px;
    display: none;
    font-family: 'amalia_pronormalitalic',sans-serif;
    text-transform: capitalize;
    font-size: 16px;
    letter-spacing: 1px;
}

body.nextProductList a.nextProdName:hover {
    text-decoration: none;
}

body.nextProductList div.tileContent div.nextStatus {
    position: absolute;
    top: 30px;
    padding-left: 10px;
    display: none;
    font-family: 'amalia_pronormalitalic',sans-serif;
    text-transform: capitalize;
    letter-spacing: 1px;
}

以上是关于css 淡化产品图像上的文本的主要内容,如果未能解决你的问题,请参考以下文章

在 css 中悬停时淡化图像标题

使用 CSS3 使图像/div 淡化,而不使用悬停

css Bootstrap淡化旋转木马触摸滑块与文本动画

CSS3 淡出/淡入文本和图像从和到透明

如何淡化变化的背景图像

图像html css上的文本[重复]