Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我正在进行的网站 http://www.wearemovingto.com我使用模板作为示例,但我希望地图在移动视图上消失并有一个下拉列表取代它,只是想知道使用什么代码?谢谢。
我会倾向于使用 CSS3 媒体查询。如果添加带有 ID 的选择vmapSelect:
vmapSelect
<style type="text/css"> #vmapSelect {display:none;} @media all and (max-width: 1000px) { #vmap {display:none;} #vmapSelect {display:block;} } </style>