Q
同時打開
0
A
回答
2
這是一個非常基本的例子。你現在可以用CSS3做到這一切,但這裏是jQuery的方式。
HTML:
<div class="box">
<div class="inner">
<p>Content</p>
</div>
</div>
CSS:
.box {
position: absolute;
bottom: 0;
width: 200px;
height: 0;
overflow: hidden;
}
.inner {
position: absolute;
top: 0;
left: 0;
width: 100%;
}
的jQuery:
$('.box').hover(function(){
$(this).animate({
height: 200
});
},function(){
$(this).animate({
height: 0
});
});
您可以測試代碼here。
這應該做到這一點!
希望幫助:)
相關問題
- 1. 同時TCP打開
- 2. jQuery Show()同時打開
- 3. 同時打開多個StreamSocket
- 4. RuntimeError同時打開deploy.prototxt
- 5. 錯誤,同時打開PDF
- 6. java.lang.IndexOutOfBoundsException同時打開的NetBeans
- 7. 彈出框同時打開
- 8. (Windows)同時打開同一個文件
- 9. Powerbuilder word打開時如果打開相同的文檔
- 10. 打開嵌入Derby DB,同時debbunging
- 11. jquery類,同時打開兩個
- 12. NSStream與NSURLConnection的同時打開TCP
- 13. socket.io中最大同時打開房間
- 14. WinForm凍結,同時打開UserControl
- 15. 布勞爾打開,同時下載
- 16. 同時打開eclipse獲取錯誤
- 17. 同時打開mailto並提交表格
- 18. 在登錄時打開不同頁面
- 19. Binary Reader和Writer同時打開?
- 20. 收到一個錯誤,同時打開
- 21. 問題,同時打開星火殼
- 22. 用SuperCsv寫文件,同時打開excel
- 23. 同時打開多個插座
- 24. 錯誤,同時打開日食
- 25. 同時打開兩個jquery datepickers
- 26. SSL錯誤,同時打開輸入流
- 27. 錯誤,同時打開使用phpExcel
- 28. 遊戲中心同時打開
- 29. 同步打開UIDocument
- 30. Windows Phone - 打開網站時打開
[你嘗試過什麼?](http://mattgemmell.com/2008/12/08/what-have-you-tried/) – j08691 2012-04-17 16:10:17
我試過效果基本show()函數,但沒有發生。然後我知道它隱藏了一切,而不是顯示它 – Abilash 2012-04-17 16:13:05