请看案例:
让二级菜单变成一行,只需要在竖排的效果上,让二级菜单都浮动起来,这样就在一行了。
下面是简单的代码实现,仅供参考:
<style>
* {margin:0pxpadding:0px}
li {list-style:nonewidth:100pxheight:30pxfont-size:14pxtext-align:leftline-height:30pxborder:1px solid #000position:relative}
.box>li {float:leftposition:relative}
.son {position:absolutetop:30pxleft:-1pxwidth:306px}
.son>li {float:left} /*浮动后,二级菜单就在一行了*/
.grason {position:absolutetop:-1pxleft:100px}
.son,.grason {display:none}
.active {display:blockbackground:#FF0}
</style>
<script>
window.onload=function(){
var aLi = document.getElementsByTagName('li')
for(var i=0i<aLi.lengthi++)
{
/*给一级菜单加鼠标移入,移出事件,让二级菜单显示,隐藏*/
aLi[i].onmouseover = function(){
this.className = 'active'
var oSon = this.getElementsByTagName('ul')[0]
if(oSon)
{
oSon.style.display='block'
}
}
aLi[i].onmouseout = function(){
this.className = ''
var oSon = this.getElementsByTagName('ul')[0]
if(oSon)
{
oSon.style.display='none'
}
}
}
}
</script>
</head>
<body>
<ul class="box">
<li>首页</li>
<li>公司简介
<!--创建的二级菜单-->
<ul class="son">
<li>大事件</li>
<li>领导致辞</li>
<li>企业文化</li>
</ul>
</li>
<li>联系我们</li>
<li>产品显示</li>
</ul>
</body>
对于样式: 通过html标签可强制移动端浏览器横屏或竖屏但兼容性较差,目前仅有: UC强制竖屏:<meta name="screen-orientation" content="portaint"> QQ强制竖屏:<meta name="screen-orientation" content="landscape"> 通过HTML标签media识别横屏和竖屏,分别引用不同的css: 竖屏: <link rel="stylesheet" media="all and (orientation:portrait" href="portrait.css"> 竖屏: <link rel="stylesheet" media="all and (orientation:landscape)" href="landscape.css"> 通过css媒体查询判断横竖屏,并分别指定样式: @media screen and (orientation: portrait) { //竖屏 CSS } @media screen and (orientation: landscape) { //横CSS }对于事件:通过onorientationchange事件或resize事件监听手机的横竖屏,分别指定对应的事件。强制通过页面 禁止app或手机的横竖屏的切换是不现实的,H5只能针对自身页面做适配!!!