473,387 Members | 3,810 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

ok experts.....explain how this works

http://www.phoenity.com/newtedge/image_gallery/

Referring to the images at the top of the page, how does he achieve a mouse
over with no onmouseover command?

The only way I can see it being done is through the CSS.
But I'm not clear on how it works exactly.

Jul 23 '05 #1
14 1180
Richard wrote:
http://www.phoenity.com/newtedge/image_gallery/

Referring to the images at the top of the page, how does he achieve a mouse
over with no onmouseover command?

The only way I can see it being done is through the CSS.
But I'm not clear on how it works exactly.


CSS, hover.
Mick
Jul 23 '05 #2
Richard wrote:
http://www.phoenity.com/newtedge/image_gallery/

Referring to the images at the top of the page, how does he achieve a
mouse over with no onmouseover command?

The only way I can see it being done is through the CSS.
But I'm not clear on how it works exactly.


Yes, it's CSS.
Some things that are set to display:none become display:block when hovered.
For a more complete tutorial, try:
http://www.meyerweb.com/eric/css/edge/popups/demo.html
Jul 23 '05 #3
"Richard" <An*******@127.001> wrote in message
news:cs*********@news2.newsguy.com...
http://www.phoenity.com/newtedge/image_gallery/

Referring to the images at the top of the page, how does he achieve a
mouse
over with no onmouseover command?

The only way I can see it being done is through the CSS.
But I'm not clear on how it works exactly.


It isn't JavaScript (so it's off-topic for this newsgroup), but it isn't
rocket science to figure out how it works either:

1) View the source on the page, note that style is in style.css. Type
<url: http://www.phoenity.com/newtedge/ima...lery/style.css /> into
your address bar, hit enter
2) Note that style.css does two @imports. Figure image_gallery.css is
the one you want.
3) Type <url:
http://www.phoenity.com/newtedge/ima...ge_gallery.css /> into
your address bar, hit enter.
4) Read.

ul#gallery>li ul ...
ul#gallery>li:hover ...
ul#gallery>li:hover ul ...

Those take care of the "popup".

ul#gallery ul:before ...
ul#gallery ul:after ...

Those take care of the stuff above and below the horizontal rules in the
"popups".

--
Grant Wagner <gw*****@agricoreunited.com>
comp.lang.javascript FAQ - http://jibbering.com/faq
Jul 23 '05 #4
Richard wrote:
http://www.phoenity.com/newtedge/image_gallery/

Referring to the images at the top of the page, how does he achieve a
mouse over with no onmouseover command?

The only way I can see it being done is through the CSS.
But I'm not clear on how it works exactly.


Okay, obviously I'm missing something here.....What exactly is it that the
linked page is supposed to be doing?.....I get a page with a load of
identical icons of Newts down the left, and text beside them to the
right.....There are no mouse-over effects, and no action takes place when I
hover over them.....
Jul 23 '05 #5
Fat Sam wrote:
Richard wrote:
http://www.phoenity.com/newtedge/image_gallery/

Referring to the images at the top of the page, how does he achieve a
mouse over with no onmouseover command?

The only way I can see it being done is through the CSS.
But I'm not clear on how it works exactly.


Okay, obviously I'm missing something here.....What exactly is it
that the linked page is supposed to be doing?.....I get a page with a
load of identical icons of Newts down the left, and text beside them
to the right.....There are no mouse-over effects, and no action takes
place when I hover over them.....


I've just opened it in Firefox, and I now see what it's supposed to do.....

Apparently it doesn't work in IE6......

That's clever......Design an application that doesn't work properly in the
most commonly used browser.....
Jul 23 '05 #6
Fat Sam wrote:
Apparently it doesn't work in IE6......

That's clever......Design an application that doesn't work properly in the
most commonly used browser.....


Many authors like to explore the possibilities of CSS, even if it won't
work in IE. It's geek fun.

Experiences like yours might motivate some people to show public support
for Firefox and try to lessen IE's stranglehold.
--
Michael Wilcox
Jul 23 '05 #7
Michael Wilcox wrote:
Fat Sam wrote:
Apparently it doesn't work in IE6......

That's clever......Design an application that doesn't work properly in
the
most commonly used browser.....

Many authors like to explore the possibilities of CSS, even if it won't
work in IE. It's geek fun.

Experiences like yours might motivate some people to show public support
for Firefox and try to lessen IE's stranglehold.


And pigs could fly out brucie's butt....

--
-=tn=-
Jul 23 '05 #8
Travis Newbury wrote:
And pigs could fly out brucie's butt....


Are you sure that cops' pants have flies?
Jul 23 '05 #9
On Tue, 18 Jan 2005 20:47:28 -0000 Fat Sam wrote:
Richard wrote:
http://www.phoenity.com/newtedge/image_gallery/ Referring to the images at the top of the page, how does he achieve a
mouse over with no onmouseover command? The only way I can see it being done is through the CSS.
But I'm not clear on how it works exactly.
Okay, obviously I'm missing something here.....What exactly is it that
the
linked page is supposed to be doing?.....I get a page with a load of
identical icons of Newts down the left, and text beside them to the
right.....There are no mouse-over effects, and no action takes place
when I
hover over them.....


That's one of the reasons why I dumped IE in favor of firefox.

Jul 23 '05 #10
On Tue, 18 Jan 2005 20:38:29 GMT Grant Wagner wrote:
"Richard" <An*******@127.001> wrote in message
news:cs*********@news2.newsguy.com...
http://www.phoenity.com/newtedge/image_gallery/ Referring to the images at the top of the page, how does he achieve a
mouse
over with no onmouseover command? The only way I can see it being done is through the CSS.
But I'm not clear on how it works exactly.
It isn't JavaScript (so it's off-topic for this newsgroup), but it
isn't
rocket science to figure out how it works either: 1) View the source on the page, note that style is in style.css. Type <url:: http://www.phoenity.com/newtedge/ima...lery/style.css /> into your address bar, hit enter
2) Note that style.css does two @imports. Figure image_gallery.css is
the one you want.
3) Type <url:
http://www.phoenity.com/newtedge/ima...ge_gallery.css />
into
your address bar, hit enter.
4) Read. ul#gallery>li ul ...
ul#gallery>li:hover ...
ul#gallery>li:hover ul ... Those take care of the "popup". ul#gallery ul:before ...
ul#gallery ul:after ... Those take care of the stuff above and below the horizontal rules in
the
"popups".


Thanks grant.
Whilst searching about, I came across another menu which has some of the
same stuff built into it but not the "popups", and more closely to my needs.
I figured it had to with the hover action since I saw no mouse routines.
I just couldn't see how he manipulated the <li> stuff into the hover
section.
Jul 23 '05 #11
While sitting in a puddle Travis Newbury scribbled in the mud:

And pigs could fly out brucie's butt....


With brucie that just might be a possibility

--
D?
http://wipkip.biz just to raise my PR
Jul 23 '05 #12
Duende wrote:
While sitting in a puddle Travis Newbury scribbled in the mud:

And pigs could fly out brucie's butt....


With brucie that just might be a possibility


Where is that Brucie? I could use a little high minded entertainment.
Jul 23 '05 #13
Travis Newbury wrote:
Michael Wilcox wrote:
Fat Sam wrote:
Apparently it doesn't work in IE6......

That's clever......Design an application that doesn't work properly
in the
most commonly used browser.....


Many authors like to explore the possibilities of CSS, even if it
won't work in IE. It's geek fun.

Experiences like yours might motivate some people to show public
support for Firefox and try to lessen IE's stranglehold.

And pigs could fly out brucie's butt....


Rather unsettling visual notwithstanding, we can always hope. It WOULD
be a beautiful day... :)

--

*** Remove the DELETE from my address to reply ***

================================================== ====
Kevin Scholl http://www.ksscholl.com/
ks*****@comcast.DELETE.net
------------------------------------------------------
Information Architecture, Web Design and Development
------------------------------------------------------
We are the music makers, and we are the dreamers of
the dreams...
================================================== ====
Jul 23 '05 #14
Travis Newbury wrote:
Michael Wilcox wrote:
Fat Sam wrote:
Apparently it doesn't work in IE6......

That's clever......Design an application that doesn't work properly
in the
most commonly used browser.....

Many authors like to explore the possibilities of CSS, even if it
won't work in IE. It's geek fun.

Experiences like yours might motivate some people to show public
support for Firefox and try to lessen IE's stranglehold.


And pigs could fly out brucie's butt....


I'm sure that's already happened.....
Jul 23 '05 #15

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

22
by: ByteSize | last post by:
Dear All, Please, this is not meant to be offensive - but it is a challenge !!! I have posted on over a dozen so called 'vb.net' expert / blog sites - in the vain hope of finding a complete,...
14
by: Ina Schmitz | last post by:
Hello all, I don't succeed in displaying the explain plan. I use IBM DB2 Universal Database 8.2. I tried to do the example given in the online help for "Visual Explain". The tables...
53
by: ROSY | last post by:
hello, response if u ,on all level of questions::: 1.how a self deletable .exe file deleted on some future date & time without invoking the .exe itself? 2.if we want that any wildcard...
68
by: Gsec | last post by:
Hi, Can anybody let me know how to write a infinite loop, such that the program never crashes ? I, guess, buffer overflow method mite help!Not sure. Plz let me know. -thanks and regards,
5
by: Ray | last post by:
Hello JavaScript experts, I've been racking my brains for 2 hours and I still haven't figured out this problem. Basically, I have this page (an IE-only page), with a lot of javascript files...
4
by: MrHelpMe | last post by:
Hello experts, Using asp with javascript and after reading many articles I found that 1 way to hide url is to use frames. However, my application has a form in which the user enter's values and...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.