我有这个代码适用于桌面浏览器。如何在移动浏览器上实现此行为?基本上我想创建一个滚动到两侧的菜单。
<style type="text/css">
#navBar {
height: 55px;
width: 80px;
overflow-x: scroll;
overflow-y:hidden;
white-space: nowrap;
}
#navBar div {
display: inline-block;
}
</style>
<div id="navBar">
akdhbaIDBhbfbhwhfbaibf
<div style="width: 100px; text-align: center; background-color: red;">
<img src="" alt="Nav1" />
<br />
<span style="font-size: 80%">Nav1</span>
</div>
<div style=" width: 100px; text-align: center;">
<img src="" alt="Nav2" />
<br />
<span style="font-size: 80%">Nav2</span>
</div>
<div style=" width: 100px; text-align: center; background-color: red;">
<img src="" alt="Nav3" />
<br />
<span style="font-size: 80%">Nav3</span>
</div>
</div>
答案 0 :(得分:4)
您可以使用-webkit-overflow-scrolling启用本机滚动:触摸;
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<style>
div {
overflow-y: hidden;
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
width: 150px;
border: 1px solid grey;
}
h1 {
width: 400px;
}
</style>
</head>
<body>
<div>
<h1>some content here</h1>
</div>
</body>
</html>