gpt4 book ai didi

css - 可折叠面板 css 位置/浏览器兼容性

转载 作者:行者123 更新时间:2023-11-28 13:54:15 27 4
gpt4 key购买 nike

我的代码中有浏览器位置问题。它在 firefox 上显示良好。但在面板 div 下的资源管理器内容 div 上显示。请帮助我修复此错误。

这是CSS代码

<style>
#colleft { width:175px;float:left; overflow:hidden; background:#333;}
#showPanel { position:inherit; z-index:2; left:0; float:left; padding-top:40px; display:none; width:0px; height:100px; cursor:pointer;}
#showPanel span{display:block; font-size:24px; height:30px; margin-top:20px; padding:10px 0 10px 10px; width:20px; background: #333;}
#colright {color:#1c1c1c; margin-left:175px}
</style>

这是我的 jquery 代码

<script type="text/javascript">
jQuery(document).ready(function(){
$("#hidePanel").click(function(){
$("#panel").animate({marginLeft:"-175px"}, 0 );
$("#colleft").animate({width:"0px", opacity:0}, 0 );
$("#showPanel").show("normal").animate({width:"0px", opacity:1}, 0);
$("#colright").animate({marginLeft:"0px"}, 0);
});
$("#showPanel").click(function(){
$("#colright").animate({marginLeft:"0px"}, 0);
$("#panel").animate({marginLeft:"0px"}, 0 );
$("#colleft").animate({width:"175px", opacity:1}, 400 );
$("#showPanel").animate({width:"0px", opacity:0}, 600).hide("slow");
});
});
</script>

html代码

   <table width="1024" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#999999">
<tr>
<td><h1>HEADER GOES HERE</h1></td>
</tr>
<tr>
<td><div id="colleft">
<div id="panel">
<h1>My Panel</h1>
<ul>
<li>item #1</li>
<li>item #2</li>
<li>item #3</li>
<li>item #4</li>
</ul>
<div id="hidePanel"><a href="#">&laquo; Hide Panel</a></div>
</div>
</div>
<div id="showPanel"><span>&raquo;</span></div> <div id="colright">
<table width="100%" cellpadding="0" cellspacing="0" bgcolor="#0066CC">
<tr>
<td>content div</td></tr>
</table></div></td>
</tr>
<tr>
<td><h4>Footer goes here</</td>
</tr>
</table>

最佳答案

hidePanel DIV 在面板 DIV 里面,但是 showPanel DIV 在面板 DIV 外面。你确定这是正确的吗?

关于css - 可折叠面板 css 位置/浏览器兼容性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11045955/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com