我想做一些固定位置的东西,除了所有的手机。
像这样:
桌面:
#sidebar{
position:fixed;
width: 200px;
height: auto;
...
和手机:
#sidebar{
position:absolute;
width: 200px;
height: auto;
...
所以我想知道,如果我使用 jquery 或 javascript,比如如果移动:使用绝对位置,如果桌面:使用固定位置,它可能会起作用。
但我不是很擅长编程 javascript 等。我只知道 html 和 css。谁能帮我解决我必须使用的代码?