Results 1 to 2 of 2

Thread: how to make a div opacity in content slider

  1. #1
    Join Date
    Mar 2009
    Location
    in the backseat on my camel
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default how to make a div opacity in content slider

    i'm trying to make a photo gallery with content slider , but i can't make a div with opacity in content slider. it won't work in all IE. in FF is working fine.
    i saw that if i take out the filter:alpha(opacity) is working, but without transition.
    can you help me?

    the website which i try to make is http://baiamare.myftp.org/preciouslook .i tried to make 1 div, as you can see.

  2. #2
    Join Date
    Dec 2008
    Location
    Portsmouth, UK
    Posts
    1,891
    Thanks
    2
    Thanked 441 Times in 435 Posts

    Default

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    
    <head>
      <title></title>
    <style type="text/css">
    /*<![CDATA[*/
    #tst {
      position:relative;overflow:hidden;width:732px;height:400px;border:solid black 1px;
    }
    
    .slide {
      position:absolute;left:0px;top:0px;width:50000px;height:400px;
    }
    .frame {
      position:relative;left:0px;top:0px;width:235px;height:390px;border:solid red 1px;float:left;margin-Left:5px;margin-Top:5px;
    }
    .frame IMG{
      position:relative;left:5px;top:5px;
    }
    /*]]>*/
    </style>
    <script type="text/javascript">
    /*<![CDATA[*/
    // Basic Element Animator (09-May-2009)
    // by Vic Phillips http://www.vicsjavascripts.org.uk
    
    // To progressively change the Left, Top, Width, Height or Opacity of an element over a specified period of time.
    // With the ability to scale the effect time on secified minimum/maximum values<br />
    // and with three types of progression 'sin' and 'cos' and liner.
    
    // **** Application Notes
    
    // **** The HTML Code
    //
    // when moving an element the inline or class rule style position of the element should be assigned as
    // 'position:relative;' or 'position:absolute;'.
    //
    // The element would normally be assigned a unique ID name.
    //
    
    // **** Executing the Effect(Script)
    //
    // The effect is executed by an event call to function 'zxcBAnimator('width#',document.getElementById('tst'),10,800,5000,[10,800],'sin');'
    // where:
    // parameter 0 = the mode(see Note 2).                                                                     (string)
    // parameter 1 = the unique ID name or element object.                                                     (string or element object)
    // parameter 2 = the start position of the effect.                                                         (digits, for opacity minimum 0, maximum 100)
    // parameter 3 = the finish position of the effect.                                                        (digits, for opacity minimum 0, maximum 100)
    // parameter 4 = (optional) period of time between the start and finish of the effect in milliseconds.     (digits or defaults to 2000 milliSeconds)
    // parameter 5 = (optional) to scale the effect time on a secified minimum/maximum.                        (array, see Note 5)
    //                 field 0 the minimum. (digits)
    //                 field 1 the maximum. (digits)
    // parameter 6 = (optional) the type of progression, 'sin', 'cos' or 'liner'.                              (string, default = 'liner')
    //                'sin' progression starts fast and ends slow.
    //                'cos' progression starts slow and ends fast.
    //
    //  Note 1:  The default units(excepting opacity) are 'px'.
    //  Note 2:  Examples modes: 'left', 'top', 'width', 'height', 'opacity.
    //           For hyphenated modes, the first character after the hyphen must be upper case, all others lower case.
    //  Note 3:  To 'toggle' the effect include '#' in parameter 0.
    //           The first call will set the toggle parameters.
    //           Subsequent calls with '#' in parameter 0 and the same start and finish parameters will 'toggle' the effect.
    //  Note 4:  The function may be re-executed with a different set of parameters (start/finish time or period)
    //           whenever required, say from an onclick/mouseover/out event.
    //           The period parameter will be retained unless re-specified.
    //  Note 5: parameter 5 is of particular use when re-calling the effect
    //          in mid travel to retain an constant rate of progression.
    //  Note 6: parameters 2 and 3 must be different values to initilise or execute the script.
    //
    
    // **** Advanced Applications
    //
    //  Calling function 'zxcBAnimator' returns the instance of the script,
    //  this may be assigned to a variable and used to access the current value of the effect.
    //  alternativly the sript instance by elementobject[mode.replace(/\W/g,'')+'oop'];
    //  where mode is parameter 0 of the initial call.
    //  An array storing the current, start and finish values of the element effect may be accessed
    //  from the element effect.data as fields 0, 1 and 2 respectively
    //
    
    // **** General
    //
    // All variable, function etc. names are prefixed with 'zxc' to minimise conflicts with other JavaScripts.
    // These characters may be changed to characters of choice using global find and replace.
    //
    // The Functional Code(about 2.16K) is best as an External JavaScript.
    //
    // Tested with IE7 and Mozilla FireFox on a PC.
    //
    
    
    
    // **** Functional Code - NO NEED to Change
    
    
    function zxcBAnimator(mde,obj,srt,fin,ms,scale,curve){
     if (typeof(obj)=='string'){ obj=document.getElementById(obj); }
     if (!obj||(!srt&&!fin)||(srt==fin)) return;
     var oop=obj[mde.replace(/\W/g,'')+'oop'];
     if (oop){
      if (oop.srtfin[0]==srt&&oop.srtfin[1]==fin&&mde.match('#')) oop.update([oop.data[0],(oop.srtfin[0]==oop.data[2])?fin:srt],ms,scale,curve);
      else oop.update([srt,fin],ms,scale,curve);
     }
     else oop=obj[mde.replace(/\W/g,'')+'oop']=new zxcBAnimatorOOP(mde,obj,srt,fin,ms,scale,curve);
     return oop;
    }
    
    function zxcBAnimatorOOP(mde,obj,srt,fin,ms,scale,curve){
     this.srtfin=[srt,fin];
     this.to=null;
     this.obj=obj;
     this.mde=mde.replace(/\W/g,'');
     this.update([srt,fin],ms,scale,curve);
    }
    
    zxcBAnimatorOOP.prototype.update=function(srtfin,ms,scale,curve){
     clearTimeout(this.to);
     this.time=ms||this.time||2000;
     this.data=[srtfin[0],srtfin[0],srtfin[1]];
     this.mS=this.time*(!scale?1:Math.abs((srtfin[1]-srtfin[0])/(scale[1]-scale[0])));
     this.ms=this.mS;
     this.curve=(typeof(curve)=='string')?curve.charAt(0).toLowerCase():(this.curve)?this.curve:'x';
     this.inc=Math.PI/(2*this.mS);
     this.srttime=new Date().getTime();
     this.cng();
    }
    
    zxcBAnimatorOOP.prototype.cng=function(){
     this.ms=new Date().getTime()-this.srttime;
     this.data[0]=(this.curve=='s')?Math.floor((this.data[2]-this.data[1])*Math.sin(this.inc*this.ms)+this.data[1]):(this.curve=='c')?(this.data[2])-Math.floor((this.data[2]-this.data[1])*Math.cos(this.inc*this.ms)):(this.data[2]-this.data[1])/this.mS*this.ms+this.data[1];
     if (isFinite(this.data[0])){
      if (this.mde!='left'&&this.mde!='top'&&this.data[0]<0) this.data[0]=0;
      if (this.mde!='opacity') this.obj.style[this.mde]=this.data[0]+'px';
      else  zxcOpacity(this.obj,this.data[0]);
     }
     if (this.ms<this.mS) this.to=setTimeout(function(oop){return function(){oop.cng();}}(this),10);
     else {
      this.data[0]=this.data[2];
      if (this.mde!='opacity') this.obj.style[this.mde]=this.data[0]+'px';
      else zxcOpacity(this.obj,this.data[0]);
     }
    }
    
    function zxcOpacity(obj,opc){
     if (opc<0||opc>100) return;
     obj.style.filter='alpha(opacity='+opc+')';
     obj.style.opacity=obj.style.MozOpacity=obj.style.KhtmlOpacity=opc/100-.001;
    }
    
    /*]]>*/
    </script>
    
    <script  type="text/javascript">
    /*<![CDATA[*/
    
    function Slide(id,cls,ms){
     var p=document.getElementById(id);
     var slide=p.getElementsByTagName('DIV')[0];
     var frames=zxcByClassName(cls,slide)
     for (var z0=0;z0<frames.length*2;z0++){
      slide.appendChild(frames[z0%frames.length].cloneNode(true));
     }
     this.slide=slide;
     this.frames=zxcByClassName(cls,slide);
     this.nu=(frames.length-1);
     slide.style.left=-(this.frames[this.nu].offsetLeft+this.frames[this.nu].offsetWidth)-1+'px'
     this.Slide(0);
     this.cnt=0;
     this.ms=ms||1000;
    }
    
    Slide.prototype.Slide=function(nu){
     zxcBAnimator('left',this.slide,this.slide.offsetLeft,-(this.frames[this.nu+nu].offsetLeft+this.frames[this.nu+nu].offsetWidth)-1,this.ms)
     for (var z0=0;z0<this.frames.length;z0++){
      zxcOpacity(this.frames[z0],50);
     }
     zxcBAnimator('opacity',this.frames[this.nu+nu+1],0,100,this.ms)
    }
    
    Slide.prototype.Next=function(ud){
     this.cnt+=ud;
     this.cnt=this.cnt<0?this.nu:this.cnt>this.nu?0:this.cnt;
     this.Slide(this.cnt);
    }
    
    function zxcByClassName(nme,el,tag){
     if (typeof(el)=='string') el=document.getElementById(el);
     el=el||document;
     for (var tag=tag||'*',reg=new RegExp('\\b'+nme+'\\b'),els=el.getElementsByTagName(tag),ary=[],z0=0; z0<els.length;z0++){
      if(reg.test(els[z0].className)) ary.push(els[z0]);
     }
     return ary;
    }
    /*]]>*/
    </script>
    
    <script  type="text/javascript">
    /*<![CDATA[*/
    var S1;
    function Init(){
     S1=new Slide('tst','frame',1000);
    }
    
    /*]]>*/
    </script>
    
    </head>
    
    <body onload="Init();">
    <div id="tst" >
     <div class="slide" >
      <div class="frame" ><img src="http://baiamare.myftp.org/preciouslook/gfx/Untitled-2_07.jpg" /></div>
      <div class="frame" ><img src="http://baiamare.myftp.org/preciouslook/gfx/Untitled-2_03.jpg" /></div>
      <div class="frame" ><img src="http://baiamare.myftp.org/preciouslook/gfx/Untitled-2_05.jpg" /></div>
     </div>
    </div>
    <input type="button" name="" value="Frame 0" onclick="S1.Slide(0);"/>
    <input type="button" name="" value="Frame 1" onclick="S1.Slide(1);"/>
    <input type="button" name="" value="Frame 2" onclick="S1.Slide(2);"/>
    <input type="button" name="" value="Next" onclick="S1.Next(1);"/>
    <input type="button" name="" value="Back" onclick="S1.Next(-1);"/>
    
    
    </body>
    
    </html>

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
  •