我想做一個響應網站,但我是新的HTML5和CSS3。 結果我在找你可以看到在這個鏈接上,在「團隊」部分的圖片效果:http://evatheme.com/templates/white/index.html#teamDiv動畫時懸停
我已經嘗試使用過渡的寬度和背景,我也相當困惑如何讓其他元素出現並在懸停時消失。
任何人都可以幫助我嗎?或者給我一些關於我有什麼搜索的提示?
這是代碼我在測試:
CSS:
#test {
width:300px;
height:100px;
background:blue;
transition:width 2s;
-webkit-transition:width 2s; /* Safari */ }
#teste {
width:px;
height:100px;
background:red;
transition:width 2s;
-webkit-transition:width 2s; /* Safari */ }
.teste:hover { width:300px; }
HTML:
<div id="test">
<div id="teste" class="teste"></div>
</div>
感謝您的幫助。
謝謝你。這幫助了我很多。 – celsomtrindade