top.gsp
上传用户:steveyhw
上传日期:2019-05-13
资源大小:307k
文件大小:3k
源码类别:

PlugIns编程

开发平台:

Java

  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <html>
  3.   <head><title>top</title>
  4.     <link rel="stylesheet" href="${createLinkTo(dir: 'css', file: 'top.css')}"/>
  5.   </head>
  6. <style type="text/css">
  7. <!--
  8. *{margin:0;padding:0;border:0;}
  9. body {
  10.     font-family: arial, 宋体, serif;
  11.         font-size:12px;
  12. }
  13. #nav {
  14.      line-height: 24px;  list-style-type: none; background:#666;
  15. }
  16. #nav a {
  17.     display: block; width: 80px; text-align:center;
  18. }
  19. #nav a:link  {
  20.     color:#666; text-decoration:none;
  21. }
  22. #nav a:visited  {
  23.     color:#666;text-decoration:none;
  24. }
  25. #nav a:hover  {
  26.     color:#FFF;text-decoration:none;font-weight:bold;
  27. }
  28. #nav li {
  29.     float: left; width: 80px; background:#CCC;
  30. }
  31. #nav li a:hover{
  32.     background:#999;
  33. }
  34. #nav li ul {
  35.     line-height: 27px;  list-style-type: none;text-align:left; width:1000px;
  36.     left: -999em;  position: absolute;
  37. }
  38. #nav li ul li{
  39.     float: left; width: 100px;
  40.     background: #F6F6F6;
  41. }
  42. #nav li ul a{
  43.     display:inline; width: 100px;text-align:left;padding-left:2px; float:left;
  44. }
  45. #nav li ul a:link  {
  46.     color:#666; text-decoration:none;float:left;
  47. }
  48. #nav li ul a:visited  {
  49.     color:#666;text-decoration:none;float:left;
  50. }
  51. #nav li ul a:hover  {
  52.     color:#F3F3F3;text-decoration:none;font-weight:normal;float:left;
  53.     background:#C00;
  54. }
  55. #nav li:hover ul {
  56.     left: auto;
  57. }
  58. #nav li.sfhover ul {
  59.     left: auto;
  60. }
  61. #content {
  62.     clear: none;
  63. }
  64. -->
  65. </style>
  66. <script type=text/javascript><!--//--><![CDATA[//><!--
  67. function menuFix() {
  68.     var sfEls = document.getElementById("nav").getElementsByTagName("li");
  69.     for (var i=0; i<sfEls.length; i++) {
  70.         sfEls[i].onmouseover=function() {
  71.         this.className+=(this.className.length>0? " ": "") + "sfhover";
  72.         }
  73.         sfEls[i].onMouseDown=function() {
  74.         this.className+=(this.className.length>0? " ": "") + "sfhover";
  75.         }
  76.         sfEls[i].onMouseUp=function() {
  77.         this.className+=(this.className.length>0? " ": "") + "sfhover";
  78.         }
  79.         sfEls[i].onmouseout=function() {
  80.         this.className=this.className.replace(new RegExp("( ?|^)sfhover\b"),
  81. "");
  82.         }
  83.     }
  84. }
  85. window.onload=menuFix;
  86. //--><!]]></script>
  87.   <body>
  88. <div class="topbar bigwidth">
  89.     <div class="logoarea"><a href=".." onclick=" parent.location.href='../Frameset.gsp'"><img src="${createLinkTo(dir:'images',file:'logo.gif')}"></a></div>
  90.     <div class="toprightarea">
  91.        <div class="toptitel">Easy Centre 2000</div>
  92.        <div class="toprightlink"><a href=".." onclick=" parent.location.href='../Frameset.gsp'">返回首页</a></div>
  93.        <div class="landischinapic"><img src="${createLinkTo(dir:'images',file:'landischina.gif')}"></div>
  94.     </div>
  95. </div>
  96. <ul id="nav">
  97.        <g:generateUrl2 bigList="${allUrls2}"/>
  98. <li>
  99.   <a href="#"><g:message code="logout" default="logout" /></a>
  100.   <ul>
  101.     <li>
  102.        <span class="button"> <g:link class="link" controller="logout" target="_top"><g:message code="logout" default="logout" /></g:link> </span>
  103.     </li>
  104.   </ul>
  105. </li>
  106. </ul>
  107.   </body>
  108. </html>