marklnp
01-25-2015, 05:15 AM
1) Script Title:
Ultimate Fade-in slideshow (v2.6)
2) Script URL (on DD):
http://www.dynamicdrive.com/dynamici...nslideshow.htm
3) Describe problem:
I'd like to be able to style the image links with rollover states -- an "over" frame when hovered over, a "down" depressed style when selected. If I could include "onMouseOver", "onMouseDown" parameters in the URL of the image, that'd be good -- but the quotes would have to be escaped or something is my guess. I'm using the stock Javascript:
<a href="mylocation.html" class="logo" target="_top"
onMouseOver="changeImages('imgname', 'art/image_over.png'); return true;"
onMouseOut="changeImages('imgname', 'art/image.png'); return true;"
onMouseDown="changeImages('imgname', 'art/image_down.png'); return true;"
onMouseUp="changeImages('imgname', 'art/image.png'); return true;">
<img src="art/image.png" name="imgname" id="imgname" alt="logo"></a>
in my URLs. Can I pass these parameters along with the URL somehow?
I read in this message:
http://www.dynamicdrive.com/forums/showthread.php?69737-Problems-incorporating-Ultimate-Fade-in-slideshow-%28v2-4%29
about adding "Titles=" and "Alt=" parameters, so maybe something like that could be worked, maybe adding "Class=" or something?
Thanks in advance!
Ultimate Fade-in slideshow (v2.6)
2) Script URL (on DD):
http://www.dynamicdrive.com/dynamici...nslideshow.htm
3) Describe problem:
I'd like to be able to style the image links with rollover states -- an "over" frame when hovered over, a "down" depressed style when selected. If I could include "onMouseOver", "onMouseDown" parameters in the URL of the image, that'd be good -- but the quotes would have to be escaped or something is my guess. I'm using the stock Javascript:
<a href="mylocation.html" class="logo" target="_top"
onMouseOver="changeImages('imgname', 'art/image_over.png'); return true;"
onMouseOut="changeImages('imgname', 'art/image.png'); return true;"
onMouseDown="changeImages('imgname', 'art/image_down.png'); return true;"
onMouseUp="changeImages('imgname', 'art/image.png'); return true;">
<img src="art/image.png" name="imgname" id="imgname" alt="logo"></a>
in my URLs. Can I pass these parameters along with the URL somehow?
I read in this message:
http://www.dynamicdrive.com/forums/showthread.php?69737-Problems-incorporating-Ultimate-Fade-in-slideshow-%28v2-4%29
about adding "Titles=" and "Alt=" parameters, so maybe something like that could be worked, maybe adding "Class=" or something?
Thanks in advance!