我想增加我正在工作的网站上客户端图像的不透明度。它显示了悬停时的实际不透明度,但是没有任何办法可以更改实际的活动不透明度。您可以检查网站here。
答案 0 :(得分:0)
在.tt-hover类中,将不透明度设置为0.5。在悬停伪类中,将其设置为1。您只需更改默认类中的不透明度,如下所示:
.tt-partner {
display: block;
margin-left: auto;
margin-right: auto;
opacity: 1;
border-top: 1px solid #e6e9ea;
border-bottom: 1px solid #e6e9ea;
padding: 42px 5px;
-webkit-transition: all 300ms ease-in-out;
-moz-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out;
}