我有一些带有图像的滑块。
如果我将鼠标放在某个幻灯片上,它只会显示图像,并且图像应该没有灰度效果。但我想有转换延迟来改变这种效果。
如何指定悬停在图像的 li 元素上时,将使用转换延迟更改内部图像:
.grayscale
{
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
filter: gray; /* IE6-9 */
-webkit-filter: grayscale(100%); /* Chrome 19+ & Safari 6+ */
-webkit-transition: all .6s ease; /* Fade to color for Chrome and Safari */
-webkit-backface-visibility: hidden; /* Fix for transition flickering */
}
.grayscale:hover
{
filter: none;
-webkit-filter: grayscale(0%);
}
<li class="kwick grayscale"><!-- using it here will slow down slide effect -->
<a href="' . $article['url'] . '">
<div class="kw_shadow"></div>
<div class="kw_title">' . $article['title'] . '</div>
<div class="kw_img">
<img src="' . $article['imageSrc'] . '" alt="' . $article['title'] . '" style="width: 960px; height: 400px;" class="grayscale" /><!-- using it here will apply grayscale if I'm with my mouse fxp on the bottom on right side -->
</div>
</a>
</li>
这里是现场直播:http ://www.sczdavos.eu/
感谢您的想法。