inherit
16666
0
May 29, 2022 18:30:16 GMT -8
TIKOLICIOUS
Soo... hey?!
321
November 2003
toya5185
|
Post by TIKOLICIOUS on Mar 31, 2007 9:31:53 GMT -8
I know that I am not losing it because I remember seeing this code somewhere on this forum.
Its a code that flips your forum upside down and I want to use it tomorrow for april fools day on one of the popular boards on my forum. If anyone could point me in the direction of where I could find the code or whether its no longer being hosted...
Im searching for it and can't find it. So if anyone can help me, I'd really appreciate it!
|
|
inherit
Beware the ever changing head
33588
0
Nov 18, 2023 0:32:44 GMT -8
Ross
19,039
November 2004
elindir
|
Post by Ross on Mar 31, 2007 11:28:14 GMT -8
I think I remember the one you mean. Something like this, in the Header:
<style type="text/css"> <!-- table.bordercolor { Filter: FlipV; } --> </style>
|
|
XjakeX
Full Member
Once before I was someone but thats not who I am
Posts: 651
inherit
70469
0
Aug 6, 2019 19:29:21 GMT -8
XjakeX
Once before I was someone but thats not who I am
651
January 2006
wwedgehead05
|
Post by XjakeX on Mar 31, 2007 11:35:25 GMT -8
thats awesome!!!
|
|
inherit
Beware the ever changing head
33588
0
Nov 18, 2023 0:32:44 GMT -8
Ross
19,039
November 2004
elindir
|
Post by Ross on Mar 31, 2007 15:18:42 GMT -8
How does that help anyone? And yes, it is. Bit of pain to read though
|
|
inherit
16666
0
May 29, 2022 18:30:16 GMT -8
TIKOLICIOUS
Soo... hey?!
321
November 2003
toya5185
|
Post by TIKOLICIOUS on Apr 1, 2007 13:48:04 GMT -8
Thanks Ross!!! So what happened to it? Was it removed... I couldn't find it
|
|
pf
New Member
Posts: 101
inherit
96892
0
Sept 22, 2007 11:54:52 GMT -8
pf
101
January 2007
pf
|
Post by pf on Apr 8, 2007 10:44:07 GMT -8
Is there a way to make that code apply to specified users?
Thanks.
|
|
pf
New Member
Posts: 101
inherit
96892
0
Sept 22, 2007 11:54:52 GMT -8
pf
101
January 2007
pf
|
Post by pf on Apr 8, 2007 15:24:38 GMT -8
Would this work? Sorry I don't really know javascript so if it is totally messed up, just please fix it.
<script type="text/Javascript"> var Users = ['username1','username2','username3'];
if( this.location.href.match(/display/i) ) { var TD = document.body.getElementsByTagName('td'); for( var z = 0 ; z < Users.length ; z ++ ) { if( Users[z] == pb_username ) { document.write('<link rel="stylesheet" href="http://www.freewebs.com/mblast202/fflip.css" type="text/css">'); } </script>
|
|
pf
New Member
Posts: 101
inherit
96892
0
Sept 22, 2007 11:54:52 GMT -8
pf
101
January 2007
pf
|
Post by pf on Apr 9, 2007 13:25:54 GMT -8
Bump.
|
|
pf
New Member
Posts: 101
inherit
96892
0
Sept 22, 2007 11:54:52 GMT -8
pf
101
January 2007
pf
|
Post by pf on Apr 9, 2007 14:05:50 GMT -8
Oh and I just tried it and it doesn't work for me, just the code Ross posted..
|
|
nally
New Member
Posts: 62
inherit
78711
0
May 13, 2009 12:04:08 GMT -8
nally
62
May 2006
nally
|
Post by nally on Apr 10, 2007 14:59:41 GMT -8
This is cool but is there any way to put like a time limit on the code so that it turns back after say 10 seconds?
|
|
inherit
Beware the ever changing head
33588
0
Nov 18, 2023 0:32:44 GMT -8
Ross
19,039
November 2004
elindir
|
Post by Ross on Apr 11, 2007 5:12:58 GMT -8
Please have a read of the stickies. We ask you don't bump threads for 24 hours. And instead of asking "Would this work", why not just try it? Anyway, not bad considering you don't know JS. But every { you open you must have a corresponding closing } <script type="text/Javascript"> var Users = ['username1','username2','username3'];
if( this.location.href.match(/display/i) ) { for( var z = 0 ; z < Users.length ; z ++ ) { if( Users[z] == pb_username ) { document.write('<link rel="stylesheet" href="http://www.freewebs.com/mblast202/fflip.css" type="text/css">'); break; } } } </script>Nally, try this: <div id="css_Holder"><style type="text/css"> <!-- table.bordercolor { Filter: FlipV; } --> </style> </div> <script type="text/Javascript"> <!--
var time = 3000; function revert() { document.getElementById('css_Holder').innerHTML = ''; } setTimeout('revert()', time);
//--> </script>
|
|
pf
New Member
Posts: 101
inherit
96892
0
Sept 22, 2007 11:54:52 GMT -8
pf
101
January 2007
pf
|
Post by pf on Apr 11, 2007 12:57:37 GMT -8
Oh and Ross, this code only seems to work for IE users. Is there a way to make it cross-browser?
|
|
inherit
Beware the ever changing head
33588
0
Nov 18, 2023 0:32:44 GMT -8
Ross
19,039
November 2004
elindir
|
Post by Ross on Apr 14, 2007 11:58:09 GMT -8
Oh and Ross, this code only seems to work for IE users. Is there a way to make it cross-browser? As far as I'm aware IE is the only browser that supports the flip filter and thus there's no way to make it cross browser that I know of.
|
|
inherit
190360
0
Apr 16, 2013 11:25:25 GMT -8
teabags
44
February 2013
teabags
|
Post by teabags on Mar 31, 2013 2:21:57 GMT -8
Please have a read of the stickies. We ask you don't bump threads for 24 hours. And instead of asking "Would this work", why not just try it? Anyway, not bad considering you don't know JS. But every { you open you must have a corresponding closing } <script type="text/Javascript"> var Users = ['username1','username2','username3'];
if( this.location.href.match(/display/i) ) { for( var z = 0 ; z < Users.length ; z ++ ) { if( Users[z] == pb_username ) { document.write('<link rel="stylesheet" href="http://www.freewebs.com/mblast202/fflip.css" type="text/css">'); break; } } } </script>Nally, try this: <div id="css_Holder"><style type="text/css"> <!-- table.bordercolor { Filter: FlipV; } --> </style> </div> <script type="text/Javascript"> <!--
var time = 3000; function revert() { document.getElementById('css_Holder').innerHTML = ''; } setTimeout('revert()', time);
//--> </script>I would like to use this flip code tomorrow whereabouts do you have to put it, I know very little about coding so any directions would be appreciated Thanks very much
|
|
Alisha
Junior Member
Cake, and grief counseling, will be available at the conclusion of the test.
Posts: 308
inherit
174267
0
Jun 17, 2024 17:20:06 GMT -8
Alisha
Cake, and grief counseling, will be available at the conclusion of the test.
308
December 2011
alishabussart
|
Post by Alisha on Mar 31, 2013 21:34:35 GMT -8
I put this in my global header, and it works. It's set to revert after 30 seconds and works for Google Chrome.
<div id="css_Holder"><style type="text/css"> body { -moz-transform: rotate(-180deg); -o-transform: rotate(-180deg); -webkit-transform: rotate(-180deg); } </style> </div> <script type="text/Javascript"> <!--
var time = 30000; function revert() { document.getElementById('css_Holder').innerHTML = ''; } setTimeout('revert()', time);
//--> </script>
|
|