邮件服务器-邮件系统-邮件技术论坛(BBS)
标题:
帮看看这两个效果怎么做的
[打印本页]
作者:
tsinghe
时间:
2006-8-14 20:03
标题:
帮看看这两个效果怎么做的
问题区域已经在图中标出来了,麻烦大家看看是怎么实现的.
prob1.JPG
(47.14 KB, 下载次数: 1)
下载附件
2006-8-14 20:03 上传
prob2.JPG
(48.38 KB, 下载次数: 0)
下载附件
2006-8-14 20:03 上传
作者:
tsinghe
时间:
2006-8-14 20:07
标题:
不好意思,使用MD一个多月的时间,不会的问题太多了
怎样实现树型目录结构展示呢?为什么图中的"地址簿"可以显示在文件夹的栏目中,而点击后可以在右边显示其中的内容呢?
作者:
askever
时间:
2006-8-15 09:20
楼上,其实人家什么都没修改。
1. 使用9.06版本就是以M显示的
2. 对方没有编辑什么东西,只是删除了贝页斯的目录和任务文件夹,日程安排文件夹而已。
作者:
tsinghe
时间:
2006-8-16 11:37
标题:
我用的是7.2.3
主要是因为系统的界面不支持太高版本的,所以就没有用新的,9。0。6有crack了吗?
怎样才能出现“地址簿”文件呢?这个好象不是一个文件夹,但居然也可以在文件目录结构中显示出来???
thanks
作者:
菡萏
时间:
2006-8-16 15:13
用9.0.1可以解决你要解决的问题,界面方面不需要有太多的要求
作者:
askever
时间:
2006-8-16 16:04
你装了9.06之后就会发现,默认安装就可以达到这些要求了....
作者:
tsinghe
时间:
2006-8-19 18:01
标题:
按照各位的提醒
我我下载了最新的版本,正在研究它的界面代码,希望有所有收获。
作者:
tsinghe
时间:
2006-8-21 10:03
标题:
找到解决问题的办法了
主要是使用Math.round()以及Math.ceil()这两个函数。
下面是左侧导航条的完整代码:
<table width="100" border="0" align="center" cellpadding="0" cellspacing="0" class="z12">
<tr>
<td width="100" height="1"> </td>
</tr>
<tr>
<SCRIPT LANGUAGE="javascript" type="text/javascript">
<!--
var theNums = Math.ceil((<$QUOTASIZEUSED$>/<$QUOTASIZE$>)*100);
//-->
</SCRIPT>
<td height="40" valign="top"><$IF QUOTASIZE$>
<TABLE WIDTH="100%" border="0" align="center" cellpadding="0" cellspacing="0" class="z12">
<TR>
<TD ALIGN="LEFT" WIDTH="192" ><span class="huangse">容量[$Quota$]:
<SCRIPT LANGUAGE="javascript" type="text/javascript">
<!--
document.write(theNums+'%');
//-->
</SCRIPT></span>
</TD>
</TR>
<TR>
<TD>
<TABLE border="0" cellpadding="1" cellspacing="1" >
<TR><span class="huangse">
<SCRIPT>
if(theNums!=0){
document.write('<TD width="'+(theNums!=0?Math.round(theNums/2):0)+'" height="10" bgcolor="red"><IMG SRC="<$THEME$>/shim.gif" width="1" height="1" ALT=""></TD>');
document.write('<TD width="'+(theNums!=0?Math.round(100-(theNums/2)):50)+'" bgcolor="white"><IMG SRC="<$THEME$>/shim.gif" width="1" height="1" ALT=""></TD>');
}else{
document.write('<TD width="50" bgcolor="white"><IMG SRC="<$THEME$>/shim.gif" width="50" height="10" ALT=""></TD>');
}
</SCRIPT></span>
</TR>
</TABLE></TD>
</TR>
<TR>
<TD><span class="huangse">[$Size$]: <SCRIPT LANGUAGE="javascript" type="text/javascript">
<!--
var theNums1 = Math.round((<$QUOTASIZEUSED$>)/1024);
var theNums2 = Math.round((<$QUOTASIZE$>)/1024);
document.write(theNums1+'/'+theNums2);
//-->
</SCRIPT>MB</span></TD>
</TR>
</TABLE></td>
</tr>
<tr>
<td height="40" valign="bottom">
<SCRIPT LANGUAGE="javascript" type="text/javascript">
<!--
var theNums = Math.ceil((<$QUOTAFILESUSED$>/<$QUOTAFILES$>)*100);
//-->
</SCRIPT>
<TABLE border="0" align="center" cellpadding="0" cellspacing="0" class="z12">
<TR>
<TD width="100%" ALIGN="LEFT"><span class="huangse">数量[$Quota$]:
<SCRIPT LANGUAGE="javascript" type="text/javascript">
<!--
document.write(theNums+'%');
//-->
</SCRIPT></span>
</TD>
<TD width= ALIGN="RIGHT"><$IF !QUOTASIZE$><$endif$></TD>
</TR>
<TR>
<TD>
<TABLE border="0" cellpadding="1" cellspacing="1">
<TR><span class="huangse">
<SCRIPT>
if(theNums!=0){
document.write('<TD width="'+(theNums!=0?Math.round(theNums/2):0)+'" height="10" bgcolor="red"><IMG SRC="<$THEME$>/shim1.gif" width="1" height="1" ALT=""></TD>');
document.write('<TD width="'+(theNums!=0?Math.round(100-(theNums/2)):50)+'" bgcolor="white"><IMG SRC="<$THEME$>/shim1.gif" width="1" height="1" ALT=""></TD>');
}else{
document.write('<TD width="50" bgcolor="white"><IMG SRC="<$THEME$>/shim1.gif" width="50" height="10" ALT=""></TD>');
}
</SCRIPT></span>
</TR>
</TABLE></TD>
<TD></TD>
</TR>
<TR>
<TD COLSPAN="2"><span class="huangse">[$Messages$]: <$QUOTAFILESUSED$>/<$QUOTAFILES$></span></TD>
</TR>
</TABLE></td>
</tr>
<tr>
<td><$ENDIF$><$IF QUOTAFILES$><$ENDIF$></td>
</tr>
</table>
作者:
nike999
时间:
2006-8-21 11:04
它风格里本来就有的啊.使用标准风格就行
欢迎光临 邮件服务器-邮件系统-邮件技术论坛(BBS) (http://bbs.5dmail.cn/)
Powered by Discuz! X3.2