• Das Erstellen neuer Accounts wurde ausgesetzt. Bei berechtigtem Interesse bitte Kontaktaufnahme über die üblichen Wege. Beste Grüße der Admin

Frames

jai

New member
Hi all,

I have a framed page.. it contains 3 frames (top,left and the right main )... now i need to have the left frame sliding in and out on clicking... i.e. the use has it only when he needs it... and this control should be in the same left frame.. not like having a show/hide frame in another frame.... can you please help me out ?
 
sorry, but there is no possibility to slide Frames oder hide them or whatever.

You could create a sliding layer like this. But if you do that, you will need the code for it in every document.
 
of course it's possible!

@.colin: I don't know about the posibilities of Netscape, but it's working fine in the Internet Explorer!
look my page for what I mean.
The example-files I attached are based on the percentages, but you can also take absolute pixel-values. Take a look into the code:p
 

Anhänge

  • scroller.zip
    956 Bytes · Aufrufe: 8
@flexi man lernt nie aus :) ich werd mir das morgen früh mal reinziehen, dann hab ich Zeit.....
 
left-hand-menu

okay here's your sliding menu frameset.

If you want to place a third frame at top of page you could either place it into a subordinary frameset
PHP:
<frameset cols="0,*">   <!--toplevel-frameset -->
   <frame>   <!-- lefthandmenu -->
   <frameset rows="100,*">   <!-- subordinary frameset -->
      <frame>   <!-- your head-frame -->
      <frame>   <!-- your main-frame -->
   </frameset>
</frameset>
or you could exclude this subordinary frameset to another html-file.
In both cases the link in the main-frame must be parent.parent.zu() for closing the menu and parent.parent.auf() for opening the menu

@.colin: kannst ja mal probiern das so auf Netscape umzumoddeln ich hab keinen Netscape bei mir keinen Netscape drauf und hab auch nicht vor ihn zu installieren. Mit Opera läufts auch nich, hab auch keine Idee wie ich's Opera beibringen kann ;)
 

Anhänge

  • lefthandmenu.zip
    1 KB · Aufrufe: 2
Zurück
Oben