BipadTaranMahato / slideshow

Automatically exported from code.google.com/p/slideshow
0 stars 0 forks source link

previous image displayed (Issue #12 returns) #81

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
Look at Issue 12:  Overlap option leaves the previous image displayed 
behind the current image  
(http://code.google.com/p/slideshow/issues/detail?id=12)

Please provide any additional information below.
I think issue #12 has returned because in Slideshow2r147.zip the 
slideshow.js contains the wrong code.

Problem is folloing function:

/**
Private method: show
    Does the slideshow effect.
*/
_show: function(fast){

Block that should be corrected:

if (this.options.overlap){
img.get('morph').set(visible);
this.image.get('morph').set(hidden).start(visible);

to:

if (this.options.overlap){
img.get('morph').start(hidden); //changed
this.image.get('morph').set(hidden).start(visible);

Now the previous image is hidden when new image is displayed.

Original issue reported on code.google.com by schmitz....@gmail.com on 20 Apr 2009 at 10:37

GoogleCodeExporter commented 9 years ago
> Overlap option leaves the previous image displayed 
behind the current image

I think there may be some confusion. If overlapping is true than the images will
overlap and the current image will appear behind the new one. If you would not 
like
the two images to appear together try using the overlap: false option.

Let me know if this solves your problem.

Original comment by aeron.gl...@gmail.com on 20 Apr 2009 at 1:47

GoogleCodeExporter commented 9 years ago
Mhhh, maybe this is a new option for 'clean overlapping'. The effect is very 
nice 
when you've got different sized images. Now my images are centered an i got 
that 
nice vanishing transition between those.

Dirk

Original comment by schmitz....@gmail.com on 20 Apr 2009 at 2:02

GoogleCodeExporter commented 9 years ago

Original comment by aeron.gl...@gmail.com on 8 May 2009 at 5:24

GoogleCodeExporter commented 9 years ago
Hi,

if overlap is false, there's a problem with the first image of the slideshow.
Starting the slideshow, the first image is displayed for a fraction of a second 
and
then displayed a second time. 

This problem occurs in FF3 and IE7.

Bests

Original comment by robert.t...@gmail.com on 14 Jun 2009 at 2:06