设计具有奇特视图的网络

时间:2013-07-21 22:03:43

标签: javascript html css web

我是网络应用领域的初学者,现在我想建立一个网站。 我的问题是我想在左侧https://roadtrippers.com/

创建一个菜单

那么,怎么做呢? 我只需要了解方法。

提前致谢。

1 个答案:

答案 0 :(得分:1)

如果要将元素修复到页面的侧面,请在CSS中使用position: absoluteposition: fixed。滚动时fixed将保留在同一位置; absolute将滚动内容):

.sidebar {
    /* fix the element relative to the window */
    position: absolute;
    /* fix the left side of the element to the left side of the window
       (distance of 0 between left of element and left of window) */
    left: 0;
    /* same for top and bottom */
    top: 0;
    bottom: 0;
    /* fix it to a certain width */
    width: 75px;
}

其余的互动可以通过JavaScript完成。