有没有免费的wordpress插件来展示客户的标志旋转木马灰度效果?

时间:2017-11-27 06:11:58

标签: php html css wordpress web

我想创建一个徽标轮播来展示我们的客户公司,我在开始时看到了一些灰色的徽标,一旦用户在其上盘旋,它就会变成原来的徽标颜色?请问有什么人,请告诉我如何才能为WordPress网站实现此效果?使用任何插件或外部代码?

This kind of effect

1 个答案:

答案 0 :(得分:0)

user this plugin and add below css
"Client Carousel plugin"
img {
  filter: gray; /* IE6-9 */
  -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
  filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
}

/* Disable grayscale on hover */
img:hover {
  -webkit-filter: grayscale(0);
  filter: none;
}