Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MouseOver file

Status
Not open for further replies.

cleanair4me46

Technical User
Feb 3, 2009
41
US
I would like to create a link where you mouseover and it pops up a powerpoint slide.

I know a powerpoint slide would take up the whole window so I would need the powerpoint to pop up near the link and take up half the window and show up next to the link. On mouseout the powerpoint would disapear.

Please advise if that is possible??
 
Create an iFrame with the source to your powerpoint presentation, and set the css values of it to:

position: absolute
visibility: hidden
width: yourWidth
height: yourHeight
z-index: 100 (so it stays on top of everthing)

place it next to your image and use the onMouseOver / onMouseOut events within your image tag to toggle the visibility.

The CSS will probably require some tinkering, but that should do the trick

TIP: trying googling the answer before posting, you'll find that more times than not someone else somewhere has had the same request and posted an answer online.
----
I have recently been semi-converted to ensuring all my code (well most of it) works in both javascript and non-javascript enabled browsers
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top