导航栏html代码 html模板下载
今天给各位分享导航栏html代码的知识,其中也会对html模板下载进行解释,如果能碰巧解决你现在面临的问题,别忘了关注本站,现在开始吧!
html框架如何实现左边为导航栏,右边为连接页面,代码写出来
<head>
<title>如何实现左边为导航栏点击后右边为连接页面</title>
<meta charset="gbk">
<script type="text/javascript">
function setTab(m,n){
var tli=document.getElementById("leftmenu"+m).getElementsByTagName("li");
var mli=document.getElementById("mcont"+m).getElementsByTagName("ul");
for(i=0;i<tli.length;i++){ tli[i].className=i==n?"hover":"";
mli[i].style.display=i==n?"block":"none";}}
</script>
<style type="text/css">
.aa{ width:120px; float:left;}
.aa li{ padding:5px; background:#ff0000; cursor:pointer;border:1px solid;}
.bb{ width:500px;height:200px; float:left; background:pink;}
.bb ul li{list-style:none;}
#leftmenu0{list-style:none;margin:0;}
</style>
</head>
<body>
<div class="aa">
<ul id="leftmenu0">
<li class="hover"οnclick="setTab(0,0)">nav1</li>
<liοnclick="setTab(0,1)">nav2</li>
<liοnclick="setTab(0,2)">nav3</li>
<liοnclick="setTab(0,3)">nav4</li>
<liοnclick="setTab(0,4)">nav5</li>
</ul>
</div>
<div id="mcont0" class="bb">
<ul class="block" style="display: block">
<span>content1</span>
<li>你的内容</li></ul>
<ul class="block" style="display: none">content2</ul>
<ul class="block" style="display: none">content3</ul>
<ul class="block" style="display: none">content4</ul>
<ul class="block" style="display: none">content5</ul>
</div>
</body>
</html>
扩展资料
ifame实现左侧导航栏右侧内容
1、在jsp文件的<head>中加入:
<style>
html,body{margin:0px;height:100%;}
</style>
才能使页面中的<div>设置height:100%起作用。100%是根据其父布局来确定的,所以必须确定父布局的高度。
而width:100%则可自动布满整个页面。
2、<divid="main"style="width:100%;height:100%;">
<divid="left"style="float:left;width:200px;height:100%;">
<arel="external nofollow" href="userlist.do"target="frame"><li>用户管理</li></a>
<arel="external nofollow" rel="external nofollow" rel="external nofollow" href=""target="frame"><li>角色管理</li></a>
<arel="external nofollow" rel="external nofollow" rel="external nofollow" href=""target="frame"><li>权限管理</li></a>
</div>
<divid="right"style="height:100%;width:auto;margin-left:200px;">
<iframeid="iframe"name="frame"scrolling="no"frameborder="0"height="100%"width="100%"></iframe>
</div>
</div>
float:left用于实现左右两个div并列。
更改iframe的src实现时,要注意是name属性,不是id属性。
html代码 那个“隐藏/显示社区导航栏”怎么整
演示如:www.bbxi.net
刚刚盗来的:)
下载后,把index文件加放在templates目录下
然后后台模板套系中,新增一个模板。模板名称,我写的是左测导航
字符集,GB2312。所在目录./templates/index/menu。版权随便你拉。
这样做的好处就是,点编辑就可以在线编辑你的菜单了,不用下载到本地再修改了。主要文件名为nav.htm.
第一次需要你修改MENU目录下的NAV。HTM,因为里面是我的设置。你可以按照你的论坛来定做。变通一下就可以了.
把index.htm放在论坛根目录,会自动调用index.php
如果需要修改使首页显示默认为隐藏状态,请修改index.htm,找到
整个安装过程需要有基本的HTM语言知识,不懂的朋友多看看吧。
[code]<FRAMESET border=0 name=forum frameSpacing=0 frameBorder=NO cols=8,*> [/code]
修改为
[code]<FRAMESET border=0 name=forum frameSpacing=0 frameBorder=NO cols=170,*>
[/code]
在menu.htm最后
修改为如下
[code]<TD id=menuSwitch title=显示/隐藏社区导航栏 style="CURSOR: hand"
onclick=changeWin() height="100%"><IMG
src="./images/innerimage1.gif"></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></BODY></HTML> [/code]
下载地址:
html语言导航栏初始显示英文,鼠标移动上去显示中文代码写法!
1.在<a>标签中添加两个属性,如下
<a rel="external nofollow" rel="external nofollow" rel="external nofollow" href="" class="selected" cn="服务" en="Services">
然后再对a添加两个事件,mouseover和mouseout,mouseover中将a标签当中的文字替换成
cn的属性值,mourseout则替换成en的属性值;
2.不知道有没有用jquery,如果有的话可以使用事件代理机制
$("#nav li a").live('mourseover', function(){文字替换操作});
$("#nav li a").live('mourseout', function(){文字替换操作});
3.如果没有jquery的话那最方便的做法就是直接在标签中添加onmourseover,onmouseout
ok?够明白么
关于本次导航栏html代码和html模板下载的问题分享到这里就结束了,如果解决了您的问题,我们非常高兴。