Q
水平移動div?
0
A
回答
0
您可以使用jQuery和slideDown()
和slideUp()
函數。見http://api.jquery.com/category/effects/sliding/
3
您有權設置位置=絕對的,然後設置x和y的股利。您可以在javascript中更改它們的x和y。有很多可用的滑動腳本。
1
能這樣進行:
// Moving the element to the 200 x 200 coordinate relative to
// the parent element, WITHOUT JQUERY
var elementStyles = document.getElementById("someDiv").style;
elementStyles.position = "absolute";
elementStyles.top = 200 + "px";
elementStyles.left = 200 + "px";
// Moving the element to the 200 x 200 coordinate relative to
// the parent element, WITH JQUERY
$("#someDiv").animate({
top: 200 + "px",
left: 200 + "px"
});
// If the position should be changed relative to the current position,
// add a `"+=" +` in front of `200` in the jQuery script, like this:
left: "+=" + 200 + "px"
相關問題
- 1. 如何移動DIV水平
- 2. 水平移動一個div
- 3. 垂直移動水平移動div
- 4. 垂直滾動時水平移動DIV
- 5. 如何創建水平div移動
- 6. 水平滾動Div
- 7. UIModalTransitionStyle水平移動
- 8. 水平滑動div與JQuery
- 9. 用jQuery水平滑動DIV
- 10. 水平滾動定位div
- 11. CSS水平DIV滾動
- 12. 水平滾動和切DIV
- 13. 滾動條水平DIV
- 14. Div水平滾動問題
- 15. javascript的水平滾動div
- 16. 水平居中浮動div
- 17. 水平滾動DIV數組
- 18. div的水平滾動條
- 19. div的水平滾動條
- 20. jQuery:水平滾動到div
- 21. Drupal/jquery水平滾動div
- 22. 元素div水平滾動
- 23. 上下移動水平線
- 24. 水平移動菜單
- 25. JToolbar,停止水平移動
- 26. 用Javascript水平移動
- 27. Unity中的水平移動
- 28. 水平移動控件
- 29. 水平移動一個UIView
- 30. 浮動水平的div而水平滾動 - CSS/jQuery的
把更多的問號的稱號!!!!! – fig 2010-04-27 13:05:50
你應該考慮使用jQuery,而不是用普通的javascript編碼。特別是如果你想讓div移動到新的地方,而不是立即「跳過」那裏。 – 2010-04-27 13:06:36