我想创建一个div,该div的背景图片和透明背景色以及一些文本。悬停时,透明背景色应朝div的底部滑出,如图所示:
https://i.ibb.co/pJFPvFB/Screenshot-2019-03-26-Zeplin-Project.png
默认为左块。右块处于悬停状态。
我修改了以下代码段:https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_image_overlay_fade
我将提供的样式修改为:
<style>
.container {
position: relative;
width: 50%;
}
.image {
display: block;
width: 100%;
height: auto;
}
.overlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
height: 100%;
width: 100%;
opacity: 0;
transition: .5s ease;
background-color: #008CBA;
}
.container .overlay {
opacity: 0.75;
}
.container:hover .overlay {
opacity: 0;
}
.text {
color: white;
font-size: 20px;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
}
</style>
编辑: 我的问题
我尝试在我的图像上实现简单的滑出动画,如我提供的图像所示。看到这个:https://i.ibb.co/pJFPvFB/Screenshot-2019-03-26-Zeplin-Project.png
我已经尝试过类似的操作-https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_image_overlay_fade
我将它们提供的CSS编辑到了上面提供的CSS中。
请参阅我提供的图像。我想实现这一目标。
答案 0 :(得分:1)
尝试一下。
.container {
position: relative;
width: 50%;
}
.image {
display: block;
width: 100%;
height: auto;
}
.overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 100%;
width: 100%;
transition: .5s ease;
background-color: #008CBA;
}
.container:hover .overlay {
transition: .5s ease;
height: 0;
}
.text {
color: white;
font-size: 20px;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
}
<div class="container">
<img src="https://i.ibb.co/pJFPvFB/Screenshot-2019-03-26-Zeplin-Project.png" alt="Avatar" class="image">
<div class="overlay">
<div class="text">Hello World</div>
</div>
</div>
希望此代码可以为您提供帮助。
答案 1 :(得分:0)
您希望这就是您要寻找的
.container:hover .overlay {
animation-name: slideDown;
-webkit-animation-name: slideDown;
animation-duration: 1s;
-webkit-animation-duration: 1s;
animation-timing-function: ease;
-webkit-animation-timing-function: ease;
opacity: 1 !important;
}
答案 2 :(得分:0)
希望这就是您正在寻找的
.box {
width: 200px; height: 100px;
background-size: 100% 200%;
background-image: linear-gradient(to bottom, red 50%, black 50%);
-webkit-transition: background-position 1s;
-moz-transition: background-position 1s;
transition: background-position 1s;}