Announcement

GOOGLE CHROME IS A BOTNET? GOOGLE CHROME IS A BOTNET? GOOGLE CHROME IS A BOTNET? GOOGLE CHROME IS A BOTNET? GOOGLE CHROME IS A BOTNET? GOOGLE CHROME IS A BOTNET? GOOGLE CHROME IS A BOTNET? GOOGLE CHROME IS A BOTNET? WE LIVE INSIDE A DREAM. GOOGLE CHROME IS A BOTNET? GOOGLE CHROME IS A BOTNET? GOOGLE CHROME IS A BOTNET? GOOGLE CHROME IS A BOTNET? GOOGLE CHROME IS A BOTNET? GOOGLE CHROME IS A BOTNET? GOOGLE CHROME IS A BOTNET? NO MORE SPAM
FRIENDLY REMINDER THAT THE FORUMS ARE DEAD AND THAT THE LIFE OF THE PARTY CURRENTLY RESIDES IN #FAIL #EEFORUMSANARCHY #EEFORUMS #hi ON RIZON.

YO RIZON #HI
it's closing time you don't have to go home but you can't stay here

Advertisement

#1 2012-02-13 22:13:53

scienceguyz
VIF
Registered: 2012-03-04
Posts: 1,791
Fails: 114

Scienceguyz' HTML topic

Hai guyz!
I'm playing around with html, and I want some stuff to do with it. I lack the inspiration, so I am making stuff for you guys in html! Request away!
(just request  basic text stuff not anything that you might find in a java applet or flash)

Current projects:
Gaming Site
<user requested project>

Finished projects:
Dark9/Vorp [failed]
PHP to 1000 [success!] Note-Broken link. Will update soon.

Last edited by scienceguyz (2012-03-22 21:06:19)


No longer part of Fail. Sorry.

Offline

#2 2012-02-13 22:22:10

Muffin
rrrrrr
From: Mulberry Lane
Registered: 2011-05-18
Posts: 1,318
Fails: 567
Website

Re: Scienceguyz' HTML topic

Make a fridge that you can open and move stuff around in.


rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr

Offline

#3 2012-02-14 10:52:39

scienceguyz
VIF
Registered: 2012-03-04
Posts: 1,791
Fails: 114

Re: Scienceguyz' HTML topic

I can make a fridge that you can open/close


No longer part of Fail. Sorry.

Offline

#4 2012-02-14 19:51:46

Coolio
That one guy
From: ...Huh. Where am I again?
Registered: 2011-05-18
Posts: 5,354
Fails: 55,555

Re: Scienceguyz' HTML topic

Idea
a:link (closed fridge)
a:hover (hand on fridge)
a:click (hand grabs fridge)
a:(Iforget what the word for this one is) (opens fridge)
I dunno what  a vorp is.


L3srd6t.png

Offline

#5 2012-02-15 06:44:17

Different55
The Beanmaker
Registered: 2011-05-18
Posts: 9,143
Fails: 0

Re: Scienceguyz' HTML topic

:click is supposed to be :active and the 4th is :visited.


Jet fuel can't make dank memes.

Offline

#6 2012-02-15 07:24:31

Ratburntro44
Member
Registered: 2011-10-28
Posts: 3,370
Fails: 100,959

Re: Scienceguyz' HTML topic

Note: a:hover MUST come after a:link and a:visited in the CSS definition in order to be effective!!


31
SEfX29x.png

Offline

#7 2012-02-15 10:20:39

scienceguyz
VIF
Registered: 2012-03-04
Posts: 1,791
Fails: 114

Re: Scienceguyz' HTML topic

Coolio wrote:

I dunno what  a vorp is.

Very secret project me and Different55 are working on.
EDIT: well, mostly me, but he comes later.

Last edited by scienceguyz (2012-02-15 11:17:02)


No longer part of Fail. Sorry.

Offline

#8 2012-02-15 16:21:57

Different55
The Beanmaker
Registered: 2011-05-18
Posts: 9,143
Fails: 0

Re: Scienceguyz' HTML topic

Ratburntro44 wrote:

Note: a:hover MUST come after a:link and a:visited in the CSS definition in order to be effective!!

Hm? I always put it in :hover :active :visited order. Maybe it only applies when styling a elements?


Jet fuel can't make dank memes.

Offline

#9 2012-02-15 22:17:56

Ratburntro44
Member
Registered: 2011-10-28
Posts: 3,370
Fails: 100,959

Re: Scienceguyz' HTML topic

I'm guessing it is just that, as with most stuff, most browsers support sloppy code. However, to conform to CSS standards, it should be that way.


31
SEfX29x.png

Offline

#10 2012-02-21 11:50:12

scienceguyz
VIF
Registered: 2012-03-04
Posts: 1,791
Fails: 114

Re: Scienceguyz' HTML topic

Added Dark9 to done list (it failed)
added Gaming site to to do list
Removed Fridge, that's to complicated for an HTML noob like me.


No longer part of Fail. Sorry.

Offline

#11 2012-02-25 10:21:46

scienceguyz
VIF
Registered: 2012-03-04
Posts: 1,791
Fails: 114

Re: Scienceguyz' HTML topic

<Bump>

I need to figure out how to get an <input=text> to make a variable... like if someone types in meep then var 1=meep


No longer part of Fail. Sorry.

Offline

#12 2012-02-25 13:55:57

Different55
The Beanmaker
Registered: 2011-05-18
Posts: 9,143
Fails: 0

Re: Scienceguyz' HTML topic

<form>
<input type="text" name="test1" value="You fail" onblur="functionlol(this.form)" />
<input type="text" name="test2" value="You haven't entered anything yet!" disabled="disabled" />
</form>

<script type="text/javascript">
function functionlol(form)
{
var testvar=form.test.value;
form.test2.value = "You entered: " + testvar;
form.test1.value = "Saved to testvar";
}
</script>

Does it work...?
[example]

I guess it does. Yay, my first javascript thing works.

Last edited by Different55 (2012-02-25 13:57:59)


Jet fuel can't make dank memes.

Offline

#13 2012-02-25 22:28:23

scienceguyz
VIF
Registered: 2012-03-04
Posts: 1,791
Fails: 114

Re: Scienceguyz' HTML topic

ok, I added a bunch to my forum.
Thank you different55 for that <input> thing!
there needs to be a thank you button!
so are you gonna keep it at

[example]

or change it, cause that might be useful around fail. Might.
[example]
that is so cool!

EDIT: BUG: when you type in gggg and click on the one in this post, it turns to saved to testvar and the one in your post say's you wrote: gggg

Last edited by scienceguyz (2012-02-25 22:38:50)


No longer part of Fail. Sorry.

Offline

#14 2012-02-25 23:37:53

Ratburntro44
Member
Registered: 2011-10-28
Posts: 3,370
Fails: 100,959

Re: Scienceguyz' HTML topic

That's because it uses IDs. And IDs are supposed to be unique. So the script only changes the first element with that ID, because there only should be one element with that ID.


31
SEfX29x.png

Offline

#15 2012-02-26 16:26:21

Different55
The Beanmaker
Registered: 2011-05-18
Posts: 9,143
Fails: 0

Re: Scienceguyz' HTML topic

I can fix that. Just make the <span> into a disabled input, and refer to it with my dom nonsense.

It stopped working, so I changed it back.

It still doesn't work. Oh, well, it was fun while it lasted.

Last edited by Different55 (2012-02-26 16:51:13)


Jet fuel can't make dank memes.

Offline

#16 2012-03-05 12:08:18

scienceguyz
VIF
Registered: 2012-03-04
Posts: 1,791
Fails: 114

Re: Scienceguyz' HTML topic

Yeah, It was.


No longer part of Fail. Sorry.

Offline

#17 2012-03-10 20:22:42

scienceguyz
VIF
Registered: 2012-03-04
Posts: 1,791
Fails: 114

Re: Scienceguyz' HTML topic

<bump>
So, I have found a free forum hosting site that supports custom BBcode, IDK what to do with it. Need ideas.


No longer part of Fail. Sorry.

Offline

#18 2012-03-10 23:33:01

Ratburntro44
Member
Registered: 2011-10-28
Posts: 3,370
Fails: 100,959

Re: Scienceguyz' HTML topic

What do you mean by "supports bbcode"?


31
SEfX29x.png

Offline

#19 2012-03-11 13:03:52

Different55
The Beanmaker
Registered: 2011-05-18
Posts: 9,143
Fails: 0

Re: Scienceguyz' HTML topic

I believe he means you can make your own BBCode tags.


Jet fuel can't make dank memes.

Offline

#20 2012-03-11 13:16:17

Ratburntro44
Member
Registered: 2011-10-28
Posts: 3,370
Fails: 100,959

Re: Scienceguyz' HTML topic

That would make sense.

But then cool people know how to make their own ways to support custom bbcode tags.


31
SEfX29x.png

Offline

#21 2012-03-11 14:41:06

scienceguyz
VIF
Registered: 2012-03-04
Posts: 1,791
Fails: 114

Re: Scienceguyz' HTML topic

Well yeah.
*thinks*
What do I do that's cool?


No longer part of Fail. Sorry.

Offline

#22 2012-03-11 15:07:28

rob1nfly
Waffle Inspector
From: In a secret paradox
Registered: 2011-07-28
Posts: 886
Fails: 443

Re: Scienceguyz' HTML topic

make it so there is a tag that makes your text move.


rob1nfly.png kitteh1.gif

Offline

#23 2012-03-11 15:12:29

Coolio
That one guy
From: ...Huh. Where am I again?
Registered: 2011-05-18
Posts: 5,354
Fails: 55,555

Re: Scienceguyz' HTML topic

again, only chrome and safari support things like that, which are referred to as marquee.


L3srd6t.png

Offline

#24 2012-03-11 15:21:10

scienceguyz
VIF
Registered: 2012-03-04
Posts: 1,791
Fails: 114

Re: Scienceguyz' HTML topic

Block miner forums.
So, does anyone know how I could get a free domain W/out hosting? I'm gonna try to make another total randomness forum.


No longer part of Fail. Sorry.

Offline

#25 2012-03-11 16:49:44

Different55
The Beanmaker
Registered: 2011-05-18
Posts: 9,143
Fails: 0

Re: Scienceguyz' HTML topic

whaddaya mean?


Jet fuel can't make dank memes.

Offline

Board footer

Jump to

We use Fail. Fail uses FluxBB

[ Generated in 0.024 seconds, 62 queries executed - Memory usage: 620.94 KiB (Peak: 660.6 KiB) ]