• ARCHIVES 
  • » I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

Pages: 12

I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

tekfatliu
» n00b
FTalk Level: zero
69
0
1969-12-31

I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the same trick, The box will show n Hide with a smooth transition. Just copy n paste this in your JS File: <">Don't sure whether this codes works? Try it first lah... Try clicking the header of the main control panel, it will toggle up between Show/Hide. For other boxes here's the code, I don't set them to Hide. Just try clicking the header to Show/Hide. <">This codes will slide-in and slide-out friends box, HORIZONTALY <">Infact you can use this Slide Effects, to ALMOST every tags in your HTML pages. Just supply the Element ID: var SLIDEOBJVAR = new Fx.Slide(ELEMENT ID); after that call the method of the object, in this case SLIDEOBJVAR.toggle() - actually there are other methods you can use: SLIDEOBJVAR.slideIn() SLIDEOBJVAR.slideOut()() SLIDEOBJVAR.toggle() SLIDEOBJVAR.hide() Or you can call the method when there is an event, such as : click, mouseenter, mouseleave, etc Attach the click event to ELEMENT ID, it could be a Tag <h2>, button, anchor. So when the Element has been click it should call the method: ELEMENT ID.addEvent('click',function(){SLIDEOBJVAR.toggle();}); This last example will add the effect on Element Id = 'controlPanelButtons' <">[b][UPDATE 06-09-2008][/b] This is the [b]FINAL[/b] version of the tflAccordion, simple codes, flexible n easy to use. JS Codes: <">[b]RULES :[/b] - We can put every box id in just one group, even your own made box [quote]... addBox("RIGHT","My addBox Header",sTemp,[b]"myAddBox"[/b],"2"); ... // group abc var a = ['0','1','6','18','2',[b]'myAddBox'[/b]]; var b = ['content_0','content_1','content_6','content_18','content_2',[b]'content_myAddBox'[/b]]; var c = []; tflAccordion(a,b,c);[/quote] - The default for all boxes in the group is hide, [b]EXCEPT[/b] for the [b]1st[/b] item [quote]var a = [[b]'0'[/b], '1', '6', '18']; var b = [[b]'content_0'[/b],'content_1','content_6','content_18'];[/quote] - So if you want your Public Comment to open when the page load, change the order [quote]var a = [[b]'18'[/b], '0', '1', '6']; var b = [[b]'content_18'[/b],'content_0','content_1','content_6'];[/quote] - You can even have more than one group [quote]// Make 1st group abc (For all the box on the Left Side) var a = ['0', '1', '6', '18']; var b = ['content_0', 'content_1', 'content_6', 'content_18']; var c = []; tflAccordion(a,b,c); // Make 2nd group xyz (For all the box on the Right Side) var x = ['2', '8']; var y = ['content_2', 'content_8']; var z = []; tflAccordion(x,y,z,'mouseenter'); //... More group(s)[/quote] - A box can belong to one group only [quote]var a = [[b]'0'[/b], '1', '6', '18']; ... var x = [[b]'0'[/b],'2', '8'];// This is wrong[/quote] - If you have box(s) but [b]Don't[/b] include them in any group, it'll stay [b]Open[/b]. - Besides using a mouse clik to Show/Hide the box, u can use mouse hover on the box header You [b]MUST[/b] try this option [quote]// call using this 'mouseenter' option tflAccordion(x,y,z,'mouseenter');[/quote] Usage n Explanation : Look in the JS codes comment. [b]Live preview:[/b] [url]http://profiles.friendster.com/50738231[/url] This is just a plain Accordion. I'll leave the CSS part to your guys, to add some flavours to it. GBU

Last edited by tekfatliu (2008-09-08 01:00:13)

darylldelfin
» FTalkGeek
FTalk Level: zero
1389
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

i gotcha .. wahaha .. so many things we can do here ... :D im getting [b]Moo[/b]tivated already .. :lol:
chardlau
» n00b
FTalk Level: zero
38
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

wow! another tricks from mootools and its getting hot in here. i used mootools script also in my photos gallery. this particular script can do many tricks. probably this above topic will give another more time for me to study. thanks dude for sharing this tutorial i hope it will works. let me try :thumbsup:
Hoshigaki
» FTalkAgent
FTalk Level: zero
2328
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

[i]Cool trick dude .. another show/hide trick .. nice .. [/i]
tekfatliu
» n00b
FTalk Level: zero
69
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

Thanx, a repu for me? LOL =) This is just a plain Accordion. I'll leave the CSS part to your guys, to add some flavours to it. GBU

Last edited by tekfatliu (2008-09-04 21:25:08)

mhedge
» FTalkGeek
FTalk Level: zero
1027
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

wow.. another one huh... nice one dude.. +1 for you =)
tekfatliu
» n00b
FTalk Level: zero
69
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

I was wrong in opening a new tread :wallbash: :wallbash: :wallbash: Sorry, lordheinz i'm just new to this stuff
god2014
» FTalkManiac
FTalk Level: zero
836
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

tnx for sharing:=) keep up the good work
Lordheinz
» FTalkElite
FTalk Level: zero
4377
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

[quote=tekfatliu]I was wrong in opening a new tread :wallbash: :wallbash: :wallbash: Sorry, lordheinz i'm just new to this stuff[/quote] thats ok buddy...@ topic..very clever tutorial and code..well il just study your code first before applying...:) i guess its more easy to have the trick if you have any preview? wish you can have one buddy..thanks for sharing indeed! :thumbsup:
tekfatliu
» n00b
FTalk Level: zero
69
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

[quote=Lordheinz][quote=tekfatliu]I was wrong in opening a new tread :wallbash: :wallbash: :wallbash: Sorry, lordheinz i'm just new to this stuff[/quote] thats ok buddy...@ topic..very clever tutorial and code..well il just study your code first before applying...:) i guess its more easy to have the trick if you have any preview? wish you can have one buddy..thanks for sharing indeed! :thumbsup:[/quote] Ok, i will to share more codes Thanx
tekfatliu
» n00b
FTalk Level: zero
69
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

[quote=tekfatliu]i guess its more easy to have the trick if you have any preview? wish you can have one buddy..[/quote] [b]Live preview:[/b] [url]http://profiles.friendster.com/50738231[/url]
noxs
» FTalkGeek
FTalk Level: zero
1377
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

hohohohoho nice trick buddy hhuuhuhhhuuh keep it up like it +++++
sliprock
» n00b
FTalk Level: zero
17
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

help ..not working in my addbox...just wanna ask what is the addbox id of whos right click and wvmcbox..?? maybe im wrong in addbox id..how about the tracker ?? is this are correct?? var tracker_Slide = new Fx.Slide('content_tracker'); $('tracker').getFirst().addEvent('click',function(){tracker_Slide.toggle();}); tracker_Slide.toggle(); [spoiler]// Make 1st group (Left Side Box) var a = ['0', '1', '6', '18','WVMCBOX']; var b = ['content_0', 'content_1', 'content_6', 'content_18','content_WVMCBOX']; var c = []; // default, 'click' event - don't forget 2 click the close box header tflAccordion(a,b,c); var x = ['2', '8','div_327', 'clock','4600', 'box_ke2','tracker','SPAWNPIC','WHORC']; var y = ['content_2', 'content_8','content_div_327', 'content_clock', 'content_4600','content_box_ke2', 'content_tracker', 'content_SPAWNPIC','content_WHORC']; var z = []; tflAccordion(x,y,z,'mouseenter'); //do not edit below this line function tflAccordion(iel,eli,lei,eil){ iel.each(function(el,i){lei.push(new Fx.Slide(eli[i]));eil=eil||'click';$(iel[i]).getFirst().addEvent(eil,function(){if(!$(iel[i]).getFirst().hasClass('tflTglS')){iel.each(function(el,i){if($(iel[i]).getFirst().hasClass('tflTglS')){lei[i].slideOut();$(iel[i]).getFirst().removeClass('tflTglS')}});lei[i].slideIn();$(iel[i]).getFirst().addClass('tflTglS')}});(i==0)?$(iel[0]).getFirst().addClass('tflTglS'):lei[i].slideOut()})} // end tflAccordion[/spoiler]

Last edited by sliprock (2008-09-08 13:27:45)

tekfatliu
» n00b
FTalk Level: zero
69
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

[quote=sliprock]var tracker_Slide = new Fx.Slide('[b]content_tracker[/b]');[/quote] I think this is wrong, when you're creating using addBox(...MyBoxID); It atomatically creating content_MyBoxID Just Make sure you're adding tracker box [b]before [/b] calling tflAccordion()

Last edited by tekfatliu (2008-09-23 23:24:15)

tekfatliu
» n00b
FTalk Level: zero
69
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

@sliprock I've checked it again, because I thought it didn't works because tracker using <iframe> tag But it works fine. :o Here is some simple checking, to do: First don't include your own box, just use FS box [spoiler]var x = ['2', '8']; var y = ['content_2', 'content_8']; var z = []; tflAccordion(x,y,z);[/spoiler] If it works fine, then add your own box [b]one at a time[/b] [spoiler]addBox("TrackerHeader",TRACKER.div.innerHTML,"tracker","right"); var x = ['2', '8','tracker']; var y = ['content_2', 'content_8','content_tracker']; var z = []; tflAccordion(x,y,z);[/spoiler] If it works add another box, if not then you know which box is not working Place an alert box to see if the Content_ID is available [quote]addBox('TrackerHeader',TRACKER.div.innerHTML,'tracker','right'); [b]alert($('content_tracker').innerHTML);[/b] var x = ['2', '8','tracker']; ... ...[/quote] If it show [b]undefined [/b]then the problem is with Content_ID Don't forget addBox() [b]first[/b], tflAccordion() [b]later[/b] Hope, this will help you
markscab
» n00b
FTalk Level: zero
13
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

nice trick.. can i ask you something? i just want to know the codes in your (My welcome box in your profile, its like a alert script but this is more cool because you have a shadow box and fade when you click close) thx..
unmaskedluke
» FTalkGeek
FTalk Level: zero
1180
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

awtss.. not working in IE? :rolleyes:
---xXirukiTepe---
» SuperFTalker
FTalk Level: zero
8896
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

[b]cant see ur preview... :O[/b]
marius
» FTalker
FTalk Level: zero
205
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

i already tried ur trick but the pictures in my about me still floats
R4bhi
» FTalker
FTalk Level: zero
116
0
1969-12-31

Re: I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

Can i add a Box in the right without using tracker... If i can add a box what code should i use...
  • ARCHIVES 
  • » I'm pretty sure you've already seen this Show/Hide box trick, when you click on the header of the box it will toggle the box closed when it s open, vice versa. This 3 simple lines of codes will do the

Pages: 12

Board footer

© 2025 F Talk

Current time is 21:11

[ 10 queries - 0.023 second ]
Privacy Policy