Wordpress 如何创造这种效果?

Wordpress 如何创造这种效果?,wordpress,Wordpress,Hy 我有这个主题 在右侧有一些图像,当我们向上箭头时会产生影响 提前通知! 有人知道那里使用的是什么类型的插件或者它们是如何创建的吗?hi这是一个基于css的工作:使用bg图像的悬停显示效果。你有一个教程来解释这一点吗?请注意,这次没有教程,但这只是一些普通的css,请使用firebug查看。当你有20次重复时,请发送请求给我 .image-plus-1:hover:before, .wpb_single_image .wpb_wrapper > a:hover:before {

Hy

我有这个主题

在右侧有一些图像,当我们向上箭头时会产生影响

提前通知!
有人知道那里使用的是什么类型的插件或者它们是如何创建的吗?

hi这是一个基于css的工作:使用bg图像的悬停显示效果。你有一个教程来解释这一点吗?请注意,这次没有教程,但这只是一些普通的css,请使用firebug查看。当你有20次重复时,请发送请求给我
.image-plus-1:hover:before, .wpb_single_image .wpb_wrapper > a:hover:before {
    opacity: 0.6;
    transform: scale(1) rotateY(0deg);
    visibility: visible;
}
.image-plus-1:before, .wpb_single_image .wpb_wrapper > a:before {
    background: url("../images/plus.png") no-repeat scroll center center / 60px 60px rgba(0, 0, 0, 0.6);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    transform: scale(0.5) rotateY(180deg);
    transition: all 0.3s ease 0s;
    width: 100%;
    z-index: 100;
}