Results 1 to 3 of 3

Thread: Fading the Ultimate Fade Slideshow

  1. #1
    Join Date
    Aug 2012
    Posts
    10
    Thanks
    5
    Thanked 0 Times in 0 Posts

    Default Fading the Ultimate Fade Slideshow

    Hello everybody,

    I'm using the ultimate fade slideshow (with imagemap, thanks to jscheuer1).
    Now I need to fade out the whole slideshow when I mouseover a different element.
    But there is obviously a problem using jquery fade on the slideshow that uses fade itself.
    I tried Mootools, that works, but I don't want to use another framework.

    I'm sure there must be a solution since Jquery and Mootools are both (just ;-) JavaScript.

    Thanks for any help!

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Part of the problem probably is that the slideshow puts jQuery into noConflict mode. And I must say this question strikes me as a little too general. That said - say your slideshow is in a div with an id of fadeshow1, then you should be able to have another element on the page like:

    Code:
    <div id="fadeoutshow">Fade Out the Show (anything can go here really)</div>
    And in the head of the page, after the scripts for the slideshow you can put this script:

    Code:
    <script type="text/javascript">
    jQuery(function($){
    	$('#fadeoutshow').mouseenter(function(){
    		$('#fadeshow1').fadeOut('slow');
    	});
    });
    </script>
    That should do it because it avoids any limitations imposed via noConflict mode. The browser cache may need to be cleared and/or the page refreshed to see changes.

    And specifics about the page might require tweaks. But in general (assuming I've made no typos) this will work.

    If you want more help, please include a link to the page on your site that contains the problematic code so we can check it out.
    Last edited by jscheuer1; 09-08-2012 at 09:58 PM. Reason: detail
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. The Following User Says Thank You to jscheuer1 For This Useful Post:

    WebSurfer (09-09-2012)

  4. #3
    Join Date
    Aug 2012
    Posts
    10
    Thanks
    5
    Thanked 0 Times in 0 Posts

    Default

    Hi John,
    that was it, indeed. It works. Thank you again sooo much.
    It would have taken me a while to figure that out... if ever...
    I will be more specific next time, don't want to unneccessarily confuse helpful people ;-)

    Thx.
    Tom

Similar Threads

  1. Resolved Ultimate Fading Slideshow individual slide durations?
    By sonofray in forum Dynamic Drive scripts help
    Replies: 5
    Last Post: 02-21-2012, 09:15 PM
  2. Resolved Ultimate Fade-in slideshow not fading in IE6
    By porcupine in forum Dynamic Drive scripts help
    Replies: 2
    Last Post: 10-15-2009, 06:06 PM
  3. Fading Scroller and Fade In Slideshow not working in IE7
    By nikammar in forum Dynamic Drive scripts help
    Replies: 11
    Last Post: 11-09-2007, 06:59 AM
  4. Storing the Ultimate Fading Slideshow in a separate file
    By photodah in forum Dynamic Drive scripts help
    Replies: 7
    Last Post: 08-27-2007, 07:21 PM
  5. Ultimate Fade-in not fading/how to delete linking
    By pentimento in forum Dynamic Drive scripts help
    Replies: 6
    Last Post: 09-08-2006, 06:58 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •