Forums

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

Home Forums CSS Slideshow problems

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #37988
    edonian
    Participant

    I’m using slideshow codes provided by HunBug, and I would love to change the speed of the transition. It is explained on the site I guess, but I’m having problems changing it. It moves a bit too slow for me, and I’ve tried messing around with the codes but it would screw up the transition completely or skip images.

    If anyone can help me, that would be more than awesome!

    Here’s the slideshow page: http://casildasdesigns.webs.com/test.htm

    And the codes to the slideshow

    //=======================
    //
    // Fading Image Slideshow
    //
    // http://www.astral-consultancy.co.uk/cgi-bin/hunbug/doco.cgi?11510
    //
    //=======================


    var slideshowFadeAnimate = new Array();
    var slideshowFadeTimer = new Array();
    var slideshowFadeCount = new Array();
    var slideshowFadeImages = new Array();


    //======================


    function slideshowFade(id,cl,imageArray,fadeInterval,holdTime)
    {

    if(cl)
    cl = ' class="'+cl+'"';

    document.write('
    ');

    var ss = document.getElementById(id+'img');
    if(ss.addEventListener)
    {
    ss.addEventListener('mouseover',function(){slideshowFadeMouseover(id)},false);
    ss.addEventListener('mouseout',function(){slideshowFadeMouseout(id)},false);
    }
    else if(ss.attachEvent)
    {
    ss.attachEvent('onmouseover',function(){slideshowFadeMouseover(id)});
    ss.attachEvent('onmouseout',function(){slideshowFadeMouseout(id)},false);
    }

    slideshowFadeCount[id] = 0;
    slideshowFadeImages[id] = imageArray;
    slideshowFadeAnimate[id] = 'run';
    slideshowFadeTimer[id] = setInterval('slideshowFadeAnimation(''+id+'',''+holdTime+'');',fadeInterval);

    }


    //======================


    function slideshowFadeAnimation(id,holdTime)
    {
    if(slideshowFadeAnimate[id]=='run')
    {
    var obj = document.getElementById(id+'img');
    var opa = slideshowFadeCount[id]%200;

    if(opa==0)
    {
    slideshowFadeAnimate[id] = 'load';
    obj.src = slideshowFadeImages[id][Math.floor(slideshowFadeCount[id]/200)%slideshowFadeImages[id].length];
    }
    else if(opa==100)
    {
    slideshowFadeAnimate[id] = 'hold';
    setTimeout('slideshowFadeRun(''+id+'')',holdTime);
    }
    else if(opa>100)
    opa = 200-opa;

    obj.style.opacity = (opa/100).toString();
    obj.style.filter = "alpha(opacity="+opa.toString()+")";

    slideshowFadeCount[id]++;

    if(slideshowFadeCount[id]==(slideshowFadeImages[id].length*200))
    slideshowFadeCount[id]=0;
    }
    }


    //======================


    function slideshowFadeMouseout(id)
    {
    if(slideshowFadeAnimate[id]=='mouseover')
    slideshowFadeAnimate[id] = 'run';
    }


    //======================


    function slideshowFadeMouseover(id)
    {
    if(slideshowFadeAnimate[id]=='run')
    {
    slideshowFadeAnimate[id] = 'mouseover';
    var obj = document.getElementById(id+'img');
    obj.style.opacity = "1";
    obj.style.filter = "alpha(opacity=100)";
    slideshowFadeCount[id] = (Math.floor(slideshowFadeCount[id]/200)*200)+101;
    }
    }


    //======================


    function slideshowFadeRun(id)
    {
    slideshowFadeAnimate[id] = 'run';
    }


    //======================

    #102765
    edonian
    Participant

    Thanks! This really helped. :)

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