Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[原创]首页热门帖在首页下拉[更新10.5]

[复制链接]
jack3399 发表于 2005-8-23 14:18:26 | 显示全部楼层
我和 11 的一樣, 整個 tabe 位移到靠左邊, allign"center" 好像不起作用, 改成 allign"right" 才改回一點點, 但還是對不齊
回复

使用道具 举报

 楼主| lu5266 发表于 2005-8-23 14:34:30 | 显示全部楼层
原帖由 jack3399 于 2005-8-23 14:18 发表
我和 11 的一樣, 整個 tabe 位移到靠左邊, allign"center" 好像不起作用, 改成 allign"right" 才改回一點點, 但還是對不齊




  1. <table  id=hot_topic_board border="0" cellspacing="0" cellpadding="0" width="{TABLEWIDTH}" bgcolor="{BORDERCOLOR}" align="center"><tr><td>
  2. </td></tr></table>

  3. <br>
  4. <table onmouseover=show_hot_topic(hot_topic,1) border="0" cellspacing="1" cellpadding="1"  height="26" width="{TABLEWIDTH}" bgcolor="{BORDERCOLOR}" align="center">

  5. <tr class="header">
  6. <td width="16%" align="center">论坛会员发贴排行</td>
  7. <td width="28%" align="center">论坛最新发表主题</td>
  8. <td width="28%" align="center">论坛浏览最多主题</td>
  9. <td width="28%" align="center">论坛回复最多主题</td>
  10. </tr>

  11. </table>
  12. <div id=hot_topic  style='position:absolute;visibility:hidden' >
  13. <br><table cellspacing="0" cellpadding="0" border="0" width="{TABLEWIDTH}" align="center" bgcolor="{BORDERCOLOR}"><tr><td>
  14. <table border="0" cellspacing="{BORDERWIDTH}" cellpadding="{TABLESPACE}" width="100%" style="table-layout: fixed; word-wrap: break-word"  >

  15. <tr>
  16. <td width="16%" bgcolor="{ALTBG2}" onMouseOver ="this.style.backgroundColor='{ALTBG1}'" onMouseOut ="this.style.backgroundColor='{ALTBG2}'">
  17. <!--{loop $_DCACHE['toppostnum'] $member}-->
  18. <a href="viewpro.php?username=$member[username]">$member[username]</a><font color=red>&nbsp;&nbsp;$member[postnum]</font>
  19. <br><!--{/loop}--></td>

  20. <td width="28%" bgcolor="{ALTBG2}" onMouseOver ="this.style.backgroundColor='{ALTBG1}'" onMouseOut ="this.style.backgroundColor='{ALTBG2}'">
  21. <!--{loop $hack_newthreads_threadlist $thread}-->
  22. <a href="viewthread.php?tid=$thread[tid]" title="主题:$thread[subject0]{LF}作者$thread[author]{LF}浏览$thread[views]{LF}回复$thread[replies]">$thread[subject]</a>
  23.                 <!--{if $thread[creditsrequire]}--> - [{lang credit_title}<span class="bold">$thread[creditsrequire]</span>{lang credit_unit}] <!--{/if}-->
  24.                 $thread[multipage]
  25. <br><!--{/loop}--></td>

  26. <td width="28%"  bgcolor="{ALTBG2}" onMouseOver ="this.style.backgroundColor='{ALTBG1}'" onMouseOut ="this.style.backgroundColor='{ALTBG2}'">
  27. <!--{loop $_DCACHE['topview'] $thread}-->
  28. <a href="viewthread.php?tid=$thread[tid]" title="主题:$thread[subject0]{LF} 作者$thread[author]{LF}浏览$thread[views]{LF}回复$thread[replies]">$thread[subject]</a>
  29.                 <!--{if $thread[creditsrequire]}--> - [{lang credit_title}<span class="bold">$thread[creditsrequire]</span>{lang credit_unit}] <!--{/if}-->
  30. $thread[multipage]
  31.   <br><!--{/loop}--></td>

  32. <td width="28%" bgcolor="{ALTBG2}" onMouseOver ="this.style.backgroundColor='{ALTBG1}'" onMouseOut ="this.style.backgroundColor='{ALTBG2}'">
  33. <!--{loop $_DCACHE['topreply'] $thread}-->
  34. <a href="viewthread.php?tid=$thread[tid]" title="主题:$thread[subject0]{LF}作者$thread[author]{LF}浏览$thread[views]{LF}回复$thread[replies]">$thread[subject]</a>
  35.                 <!--{if $thread[creditsrequire]}--> - [{lang credit_title}<span class="bold">$thread[creditsrequire]</span>{lang credit_unit}] <!--{/if}-->
  36.   $thread[multipage]
  37.   <br><!--{/loop}--></td>
  38. </tr>
  39. </table></td></tr></table></div>

  40. <script language=javascript>
  41. var objname = "";
  42. var H1Visible = 0;
  43. hot_topic.style.left=hot_topic_board.offsetLeft
  44. function show_hot_topic(objname,showmethod){
  45. if (objname != ""){
  46. if (showmethod==1){
  47. objname.style.visibility="visible";
  48. H1Visible = 1;}
  49. else{
  50. objname.style.visibility="hidden";
  51. H1Visible = 0; }
  52. }
  53. }
  54. </script>
  55. <script language="javascript">

  56. var where = "";
  57. function checkwhere(e) {
  58. if (document.layers){
  59. xCoord = e.x;
  60. yCoord = e.y;
  61. }
  62. else if (document.all){
  63. xCoord = event.clientX;
  64. yCoord = event.clientY;
  65. }
  66. else if (document.getElementById){
  67. xCoord = e.clientX;
  68. yCoord = e.clientY;
  69. }
  70. yCoord=yCoord+document.body.scrollTop;
  71. if ((xCoord<hot_topic_board.offsetLeft || xCoord> hot_topic_board.offsetWidth+hot_topic_board.offsetLeft || yCoord<hot_topic_board.offsetTop || yCoord> hot_topic.offsetTop+hot_topic.offsetHeight) & H1Visible)
  72. show_hot_topic(hot_topic,0);
  73. }
  74. document.onmousemove = checkwhere;
  75. if(document.captureEvents) {document.captureEvents(Event.MOUSEMOVE);}
  76. </script>
复制代码

[ 本帖最后由 lu5266 于 2005-8-23 14:35 编辑 ]
回复

使用道具 举报

jack3399 发表于 2005-8-23 17:22:50 | 显示全部楼层
感謝樓主, 可是您貼出來的東西, 看不出來和原壓縮內有何變化, 用了還是一樣整個 table 等比例靠左, 我不懂 HTML 的語法, 不知怎麼微調回來, 求救....
還有, 您的東西中以下這句:

  1. <div id=hot_topic  style='position:absolute;visibility:hidden' >
  2. <br><table cellspacing="0" cellpadding="0" border="0" width="{TABLEWIDTH}" align="center" bgcolor="{BORDERCOLOR}"><tr><td>
复制代码

我把它改為

  1. <div id=hot_topic  style='position:absolute;visibility:hidden' >
  2. <table cellspacing="0" cellpadding="0" border="0" width="{TABLEWIDTH}" align="right" bgcolor="{BORDERCOLOR}"><tr><td>
复制代码


1. 我去掉 <br> 是因為他懹下拉東西與原來間間隔一行, 看起來不搭,所以去掉
2. align="center" 和 align="left" 看起來都一樣, 用 align="right" 稍微往右移一點了(真是奇怪.........)
回复

使用道具 举报

 楼主| lu5266 发表于 2005-8-23 17:42:39 | 显示全部楼层
原帖由 jack3399 于 2005-8-23 17:22 发表
感謝樓主, 可是您貼出來的東西, 看不出來和原壓縮內有何變化, 用了還是一樣整個 table 等比例靠左, 我不懂 HTML 的語法, 不知怎麼微調回來, 求救....
還有, 您的東西中以下這句:
[code]
<div id=hot_topic  ...


我只是多加了点
表格的宽度进去

我也不懂排版啊

你可以把这个附件放到相应的模板试试
不要放在默认的模板
回复

使用道具 举报

jack3399 发表于 2005-8-23 17:47:51 | 显示全部楼层
由於很多的插件都是修改在默認的模板中, 改不回來了, 哭..............
樓主這樣改實在不錯, 我用了(因為對板面很有幫助), 就差那個下拉的東西, 可以再往右微調一點回來即可
回复

使用道具 举报

天才白痴梦 发表于 2005-8-23 19:10:28 | 显示全部楼层
原帖由 freddy 于 2005-8-22 23:08 发表
我测试过了!OK!不过。。和荡文的左侧栏有冲突。。。


请看附件。。。我的本地测试:

点击看大图!!!!!!!!!!!!!!!!!!!!!!!!!!!


我的也出现这个问题    我感觉不是 荡文的问题  应该是  与下拉菜单冲突
回复

使用道具 举报

 楼主| lu5266 发表于 2005-8-23 19:34:42 | 显示全部楼层
原帖由 jack3399 于 2005-8-23 17:47 发表
由於很多的插件都是修改在默認的模板中, 改不回來了, 哭..............
樓主這樣改實在不錯, 我用了(因為對板面很有幫助), 就差那個下拉的東西, 可以再往右微調一點回來即可


我是说
你把这个插件放在你的模板中啊
这个对其他的插件没是没什么影响 啊

除非你就是用一个模板而已
回复

使用道具 举报

 楼主| lu5266 发表于 2005-8-23 19:36:34 | 显示全部楼层
原帖由 天才白痴梦 于 2005-8-23 19:10 发表


我的也出现这个问题    我感觉不是 荡文的问题  应该是  与下拉菜单冲突



哈哈
我的也安装了下拉

一点问题都没啊

你看一下
javascript
脚本怎么会和下拉冲突呢
我的演示
那里都不会啊
回复

使用道具 举报

天才白痴梦 发表于 2005-8-23 19:48:14 | 显示全部楼层
...........晕 那是什么情况啊```````````````````````````````
回复

使用道具 举报

 楼主| lu5266 发表于 2005-8-23 19:51:33 | 显示全部楼层
原帖由 天才白痴梦 于 2005-8-23 19:48 发表
...........晕 那是什么情况啊```````````````````````````````


哈哈

具体情况
具体分析哦

宽风格的是有一点点移位的
我也不知道怎么解决
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-21 22:50 , Processed in 0.022086 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表