gpt4 book ai didi

html - 悬停时展开 div 以显示更多信息

转载 作者:行者123 更新时间:2023-11-28 12:35:15 25 4
gpt4 key购买 nike

有没有办法让它在用户将鼠标悬停在 div 上时展开并显示更多信息。我正尝试为电子商务网站执行此操作,因此它具有显示名称的图像,当有人将鼠标悬停在左侧时,它会显示价格、描述并添加到购物车。

Html 和 css 是首选,我在想改变宽度的东西,但我无法让它工作。

enter image description here

最佳答案

也许你想要这样的东西

<article>
<p>Description and price</p>
<img src="http://placekitten.com/200/300" alt="amazing item" />
</article>

<style type="text/css">
article{
float: left;
}
article p{
float: left;
width: 0px;
-webkit-transition: width .5s ease;
-moz-transition: width .5s ease;
-ms-transition: width .5s ease;
-o-transition: width .5s ease;
transition: width .5s ease;
}
img{
float: left;
}
article:hover p{
width: 150px;
}

</style>

关于html - 悬停时展开 div 以显示更多信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17988416/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com