| 
 
  
    | Poprzedni temat :: Następny temat |  
    | 
        
          | Gozda Wysłany: Pią 19 Sty, 2007 |  |  
          | 
 |  
          | Kod################################################################ ## Mod Title: Enhanced Menu
 ## Mod Author: otcha <gotcha@moulezzz.com> http://www.moulezzz.com
 ## Mod Adapted: Gozda <admin@bbhelp.pl> http://bbhelp.pl
 ## Mod Version: 1.0
 ## Mod description: Boczne menu, po klikni?ciu wychodzi z lewej kraw?dzi ekranu.
 ##
 ## Installation Level: Easy
 ## Installation Time: 1 Minute
 ###############################################################
 
 Demo: http://bxt.cal.pl/gozda
 
 http://bbhelp.pl/topics4/enhanced-menu-vt369.htm
 Support tylko na bbhelp.pl
 |  |  
    | 
        
          | They Wysłany: Pią 19 Sty, 2007 |  |  
          | 
 |  
          | naprawde jestes rozczarowany :? nie potrzebnie robi?e? gdy? istnieje taki mod dla phpBB by Przemo ! 
 Ta modyfikacja ju? od bardzo dawna udost?pni?a na forum przemo.
 http://www.przemo.org/php...light,enchanced
 
 Moja modyfikacja jest w downloadzie: http://design.alldeaf.pl/portal.php?mode=0
 oczywi?cie dzia?a w wersji 1.12.5 !
 |  |  
    | 
        
          | Gozda Wysłany: Pią 19 Sty, 2007 |  |  
          | 
 |  
          | W?tpi? aby kto? tej modyfikacji szuka? w modyfikacjach do 1.12.5 :| Wi?c przerobi?em j? gdy? nie znalaz?em takiej...
 |  |  
    | 
        
          | They Wysłany: Pią 26 Sty, 2007 |  |  
          | 
 |  
          | http://mody.lastinn.info/...u_14-t1131.html |  |  
    | 
        
          | ?ukasz Wysłany: Nie 11 Lut, 2007 |  |  
          | 
 |  
          | A ktore parametry odpowiadaj? za to aby wyg?uzyc te menu, aby m?g? pododawa?jeszcze kilka odno?nik?w? |  |  
    | 
        
          | They Wysłany: Nie 11 Lut, 2007 |  |  
          | 
 |  
          | ?ukasz, masz odpowiedz w pierwszym po?cie -> http://mody.lastinn.info/p9383.html#9383 . |  |  
    | 
        
          | ?ukasz Wysłany: Nie 11 Lut, 2007 |  |  
          | 
 |  
          | no tak tylko, ze ja mam taki dok w instrukcji do wyedytowania  Kodstyle type="text/css"> <!--
 #master {position:absolute; width: 200px; top: 10px; left: -150px; z-index:2; visibility:visible;}
 #menu {position:absolute; width: 18px; top: 0px; left: 150px; z-index:5; visibility:visible;}
 #top {position:absolute; width: 150px; top: 0px; left: 0px; z-index:5; visibility:visible;}
 #screen {position:absolute; width: 150px; top: 6px; left: 0px; z-index:5; visibility:visible;}
 #screenlinks {position:absolute; width: 150px; top: 6px; left: 0px; z-index:5; visibility:visible;}
 
 -->
 </style>
 <style type="text/css">
 <!--
 
 .NavJump {font-family: arial; font-size: 10pt; color: #808080; text-decoration: none;}
 a:link.NavJump {color : #808080;}
 a:visited.NavJump {color : #808080;}
 a:active.NavJump {text-decoration: none; color: #C0C0C0;}
 a:hover.NavJump {text-decoration: none; color: #C0C0C0;}
 
 -->
 </style>
 <script language = "javascript">
 <!--
 
 var ie = document.all ? 1 : 0
 var ns = document.layers ? 1 : 0
 var ns6 = document.getElementById && !document.all ? 1 : 0
 
 if(ie){
 document.write('<style type="text/css">')
 document.write("#screen {filter:Alpha(Opacity=100);}")
 document.write("</style>")
 }
 
 if(ns){
 document.write('<style type="text/css">')
 document.write("#master {clip:rect(0,150,250,0);}")
 document.write("</style>")
 }
 
 //-->
 </script>
 <script language = "javascript">
 <!--
 
 
 var ie = document.all ? 1 : 0
 var ns = document.layers ? 1 : 0
 var ns6 = document.getElementById && !document.all ? 1 : 0
 
 
 var master = new Object("element")
 master.curLeft = -150; master.curTop = 10;
 master.gapLeft = 0; master.gapTop = 0;
 master.timer = null;
 
 function moveAlong(layerName, paceLeft, paceTop, fromLeft, fromTop){
 clearTimeout(eval(layerName).timer)
 
 if(eval(layerName).curLeft != fromLeft){
 if((Math.max(eval(layerName).curLeft, fromLeft) - Math.min(eval(layerName).curLeft, fromLeft)) < paceLeft){eval(layerName).curLeft = fromLeft}
 else if(eval(layerName).curLeft < fromLeft){eval(layerName).curLeft = eval(layerName).curLeft + paceLeft}
 else if(eval(layerName).curLeft > fromLeft){eval(layerName).curLeft = eval(layerName).curLeft - paceLeft}
 if(ie){document.all[layerName].style.left = eval(layerName).curLeft}
 if(ns){document[layerName].left = eval(layerName).curLeft}
 if (ns6) { document . getElementById(layerName) . style . left = eval(layerName) . curLeft; }
 }
 
 if(eval(layerName).curTop != fromTop){
 if((Math.max(eval(layerName).curTop, fromTop) - Math.min(eval(layerName).curTop, fromTop)) < paceTop){eval(layerName).curTop = fromTop}
 else if(eval(layerName).curTop < fromTop){eval(layerName).curTop = eval(layerName).curTop + paceTop}
 else if(eval(layerName).curTop > fromTop){eval(layerName).curTop = eval(layerName).curTop - paceTop}
 if(ie){document.all[layerName].style.top = eval(layerName).curTop}
 if(ns){document[layerName].top = eval(layerName).curTop}
 if (ns6) { document . getElementById(layerName) . style . top = eval(layerName) . curTop; }
 }
 
 eval(layerName).timer=setTimeout('moveAlong("'+layerName+'",'+paceLeft+','+paceTop+','+fromLeft+','+fromTop+')',30)
 }
 
 function setPace(layerName, fromLeft, fromTop, motionSpeed){
 eval(layerName).gapLeft = (Math.max(eval(layerName).curLeft, fromLeft) - Math.min(eval(layerName).curLeft, fromLeft))/motionSpeed
 eval(layerName).gapTop = (Math.max(eval(layerName).curTop, fromTop) - Math.min(eval(layerName).curTop, fromTop))/motionSpeed
 moveAlong(layerName, eval(layerName).gapLeft, eval(layerName).gapTop, fromLeft, fromTop)
 }
 var expandState = 0
 
 function expand(){
 if(expandState == 0){
 setPace("master", 40, 10, 10);
 if(ie){document.menutop.src = "images/menub.gif"};
 if (ns6) { document . getElementById("img_menu") . innerHTML = "<img src=\"images/menub.gif\" border=\"0\" width=\"18\" height=\"70\">"; }
 expandState = 1;}
 else{
 setPace("master", -150, 10, 10);
 if(ie){document.menutop.src = "images/menu.gif"};
 if (ns6) { document . getElementById("img_menu") . innerHTML = "<img src=\"images/menu.gif\" border=\"0\" width=\"18\" height=\"70\">";}
 expandState = 0;}
 }
 
 //-->
 </script>
 <div id="master">
 <div id="menu">
 <table border="0" width="18" cellspacing="0" cellpadding="0">
 <tr><td width="100%"><a href="javascript:expand()" onfocus="this.blur()">
 <div id="img_menu"><img name="menutop" border="0" src="images/menu.gif" width="18" height="70"></div></a></td></tr>
 </table>
 </div>
 <div id="top">
 <table border="0" width="150" cellspacing="0" cellpadding="0">
 <tr><td width="100%"><img border="0" src="images/top.gif" width="150" height="6"></td></tr>
 </table>
 </div>
 <div id="screen">
 <table border="0" width="150" cellspacing="0" cellpadding="5">
 <tr><td width="100%" bgcolor="#808080">
 <table border="0" width="100%" bgcolor="#808080" cellspacing="0" cellpadding="0">
 <tr><td width="100%">
 <table border="0" width="100%" cellspacing="1" cellpadding="5">
 <tr><td width="100%" bgcolor="#FFFFFF">
 <font class="NavJump"><br></font><font class="NavJump"><br></font><font class="NavJump"><br></font><font class="NavJump"><br></font><font class="NavJump"><br></font><font class="NavJump"><br></font><font class="NavJump"><br></font><font class="NavJump"><br></font>
 </td></tr>
 </table>
 </td></tr>
 </table>
 </td></tr>
 </table>
 </div>
 <div id=screenlinks>
 <table border=0 cellpadding=6 cellspacing=0 width=150>
 <tbody>
 <tr>
 <td style="FILTER: alpha(opacity=75)" width="100%">
 <table bgcolor=#808080 border=0 cellpadding=0 cellspacing=0
 width="100%">
 <tbody>
 <tr>
 <td width="145%">
 <table border=0 cellpadding=6 cellspacing=1 width="100%">
 <tbody>
 <tr>
 <td class="row1" width="100%">
 <font face="Verdana"><b><font size="1">Szybkie menu</font></b><font size="1"><br>
 • <a href="{U_SEARCH}" class="mainmenu"><font size="1">{L_SEARCH}</font></a><br>
 • <a href="{U_MEMBERLIST}" class="mainmenu"><font size="1">{L_MEMBERLIST}</font></a><br>
 • <a href="{U_GROUP_CP}" class="mainmenu"><font size="1">{L_USERGROUPS}</font></a><br>
 • <a href="{U_PROFILE}" class="mainmenu"><font size="1">{L_PROFILE}</font></a><br>
 • <a href="{U_PRIVATEMSGS}" class="mainmenu"><font size="1">Pryw. wiadomosci</font></a><br>
 <!-- BEGIN album -->
 • <a href="{U_ALBUM}" class="mainmenu"><font size="1">{L_ALBUM}</font></a><br>
 <!-- END album -->
 <!-- BEGIN statistics -->
 • <a href="{U_STAT}" class="mainmenu"><font size="1">{L_STATISTICS}</font></a><br>
 <!-- END statistics -->
 • <a href="{U_LOGIN_LOGOUT}" class="mainmenu"><font size="1">{L_LOGIN_LOGOUT}</font></a><br>
 <!-- BEGIN download -->
 • <a href="{U_DOWNLOADS}" class="mainmenu"><font size="1">{L_DOWNLOADS}</font></a>
 <!-- END download --><hr>
 <a href="http://polkombkp.lh.pl/phpBB/phpBB/statistics.php" class="mainmenu"><font size="1">Statystyki Forum</font></a><br>
 </font></font></td>
 </td></tr>
 </table>
 </td></tr>
 </table>
 </td></tr>
 </table>
 </div>
 </div>
 <script language = "javascript">
 <!--
 if(ie){var sidemenu = document.all.master;}
 if(ns){var sidemenu = document.master;}
 function FixY(){
 if(ie){sidemenu.style.top = document.body.scrollTop+10}
 if(ns){sidemenu.top = window.pageYOffset+10}
 }
 setInterval("FixY()",100);
 //-->
 </script>
 |  |  
    | 
        
          | They Wysłany: Nie 11 Lut, 2007 |  |  
          | 
 |  
          | ?ukasz, to wywal stary mod i wgraj nowy ode mnie podany wyzej linka, tutaj sa kilka niepotrzebnych kod?w itd... |  |  
    | 
        
          | ?ukasz Wysłany: Nie 11 Lut, 2007 |  |  
          | 
 |  
          | aha ok |  |  
    |  |  To jest wersja lo-fi głównej zawartości. Aby zobaczyć pełną wersję z większą zawartością, obrazkami i formatowaniem proszę kliknij tutaj.
 
 |