我认为我的问题是一种自定义问题,当我将鼠标悬停在 div 上时,我试图在 div 中显示文本(段落文本)。我使用了 scale 属性,但我找不到如何隐藏文本的逻辑,并且在悬停时它将垂直缩放以显示 div 中的其余文本而不会干扰 div 的其余部分这是我的代码:
<div class="middle">
<div class="product1" id="product1" style="float: left;">
<img src="res/images/product.png" width="300" height="180">
<h3 class="prd_header">Custom Software</h3>
<p class="paragraph"><b>Your ultimate destination for the outstanding desktop and web-based business applications</b>FEnD Consultants offers Custom software Development for Web and desktop applications. Our custom software development services help the modern-day enterprise keep pace with the rapidly.
</p>
</div>
</div>
我放的文字很少,但我的真实文字很长。
这是我的CSS代码:
.middle{
height:730px;
width: 100%;
bord er-bottom: 1px dotted green ;
margin-top: 50px;
}
#product1{
opacity: 0.5;
transition: 0.5s ease-in-out;
}
#product1:hover{
background: #e0e0e0;
opacity: 1;
-webkit-transform: scale(1.1.1.1);
transform: scale(1.1.1.1);
}
.middle p {
text-align: left;
}