markdown 将鼠标悬停在DIV上以扩展宽度

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 将鼠标悬停在DIV上以扩展宽度相关的知识,希望对你有一定的参考价值。

# Hover over DIV to expand width

[SOURCE](https://stackoverflow.com/a/39349006/1602807)

```html
<div id="growContainer">
  <div class="grow" style="background-color:#2A75A9;"></div>
  <div class="grow" style="background-color:#274257;"></div>
  <div class="grow" style="background-color:#644436;"></div>
  <div class="grow" style="background-color:#8F6048;"></div>
</div>
```

```css
html,body{
	margin: 0 auto;
	height: 100%;
	width: 100%;
}
body {
	background-color: black;
}
#growContainer{
	display: table;
	width:100%;
	height:100%;
}
.grow{
	display: table-cell;
	height:100%;
	width: 25%;
	-webkit-transition:width 500ms;
	-moz-transition:width 500ms;
	transition:width 500ms;
}
#growContainer:hover .grow{
	width:20%;
}
#growContainer:hover .grow:hover {
	width:40%;
}
```

以上是关于markdown 将鼠标悬停在DIV上以扩展宽度的主要内容,如果未能解决你的问题,请参考以下文章

jquery 将鼠标悬停在图像上以交换上面 div 中的另一个图像

将鼠标悬停在多个内容上以展开

悬停在 div(1) 上以显示 div(2),如果 mouseout 继续显示 div(2) x 秒

将鼠标悬停在缩略图上以启动新图像;悬停结束后新图像仍然存在

将鼠标悬停在图像上以显示按钮,并且在悬停在实际按钮上时不触发

将鼠标悬停在图像上以获取一个带有 html/JavaScript 中的多个链接的框