You are viewing our Forum Archives. To view or take place in current topics click here.
html help!!!!!!!!!!!!!!!!!!!!
Posted:
html help!!!!!!!!!!!!!!!!!!!!Posted:
Status: Offline
Joined: May 12, 201212Year Member
Posts: 11
Reputation Power: 0
Status: Offline
Joined: May 12, 201212Year Member
Posts: 11
Reputation Power: 0
does anyone know when you hover a picture with your your curser it changes the picture, is this possible with html.
#2. Posted:
Status: Offline
Joined: Jun 08, 201014Year Member
Posts: 2,466
Reputation Power: 1070
Motto: I've been watching you all day.
Motto: I've been watching you all day.
Status: Offline
Joined: Jun 08, 201014Year Member
Posts: 2,466
Reputation Power: 1070
Motto: I've been watching you all day.
#3. Posted:
Status: Offline
Joined: Apr 15, 201113Year Member
Posts: 614
Reputation Power: 83
It is definately feasable through just html and is infact supported by all major browsers:
img src="example.png"
onmouseover="this.src='example2.png'"
onmouseout="this.src='example.png'"
of cource add "<" and ">" on the start and end. As I can't seem to reply with html code?
img src="example.png"
onmouseover="this.src='example2.png'"
onmouseout="this.src='example.png'"
of cource add "<" and ">" on the start and end. As I can't seem to reply with html code?
- 0useful
- 0not useful
#4. Posted:
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
iyop45 wrote It is definately feasable through just html and is infact supported by all major browsers:
img src="example.png"
onmouseover="this.src='example2.png'"
onmouseout="this.src='example.png'"
of cource add "<" and ">" on the start and end. As I can't seem to reply with html code?
I believe that is deprecated.
- 0useful
- 0not useful
#5. Posted:
Status: Offline
Joined: Apr 15, 201113Year Member
Posts: 614
Reputation Power: 83
Unless "orangutan123" is specifically being judged on the clarity of his code, the way on which it's written doesn't matter.
It follows the same functions and is recognized by all major browsers ( go ahead correct me if I'm wrong ).
orangutan123 was looking for a method to perform a function through html- I provided the basis of such.
So why the critisism, its not bad practice -for a basic understanding- using this method.
It follows the same functions and is recognized by all major browsers ( go ahead correct me if I'm wrong ).
orangutan123 was looking for a method to perform a function through html- I provided the basis of such.
So why the critisism, its not bad practice -for a basic understanding- using this method.
- 0useful
- 0not useful
#6. Posted:
Status: Offline
Joined: Jun 08, 201014Year Member
Posts: 2,466
Reputation Power: 1070
Motto: I've been watching you all day.
Motto: I've been watching you all day.
Status: Offline
Joined: Jun 08, 201014Year Member
Posts: 2,466
Reputation Power: 1070
Motto: I've been watching you all day.
iyop45 wrote It is definately feasable through just html and is infact supported by all major browsers:
img src="example.png"
onmouseover="this.src='example2.png'"
onmouseout="this.src='example.png'"
of cource add "<" and ">" on the start and end. As I can't seem to reply with html code?
Technically, it is HTML and Javascript, so if a user has Javascript disabled the "onmouseover" and "onmouseout" events will not work.
But the method works though, no argument there :bigups:
- 0useful
- 0not useful
#7. Posted:
Status: Offline
Joined: Aug 27, 201113Year Member
Posts: 227
Reputation Power: 8
Status: Offline
Joined: Aug 27, 201113Year Member
Posts: 227
Reputation Power: 8
Could you not use the ':hover' pseudo tag?
- 0useful
- 0not useful
You are viewing our Forum Archives. To view or take place in current topics click here.