Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript flexslider speed and IE problems

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #168974
    epitsenter
    Participant

    Hej you!

    And how to make slider animation faster?

    http://irin0183.mmd.eal.dk/stuudiot

    <script type=”text/javascript”>
    $(window).load(function() {
    $(‘.flexslider’).flexslider({
    easing: “swing”,
    animation: “fade”,
    slideshowSpeed: 7000,
    animationSpeed: 600,
    startAt: 0,
    initDelay: 0,
    controlNav: true,
    directionNav: true,
    pausePlay: true,
    pauseText: ‘Pause’,
    playText: ‘Play’
    });
    });
    </script>

    This really didn’t help at all between the head tags.

    Any ideas how to make everything fixed on IE older versions? I guess there’s one big mistake what needs to be fixed.

    Thanks.

    #168978
    Paulie_D
    Member

    This really didn’t help at all between the head tags.

    Firstly, you should dig into the documentation of your chosen plug-in but the script should, I fee,l be at the end of the page as it would need to affect elements once they are in the HTML…not before they are rendered.

    Any ideas how to make everything fixed on IE older versions?

    Please clarify..

    #168984
    epitsenter
    Participant

    True, I saw that I should add this one.

    <script>
    $(“.flexslider”).flexslider({
    animation: “slide”,
    animationSpeed: Modernizr.touch ? 400 : 1000
    });
    </script>

    Doesn’t do anything really.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.