google-code-export / slideshow

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

Ken Burns show doesn't play nice in Opera #30

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
In Opera browser, the opacity isn't working for  Ken Burns show. When a 
Pan and Zoom crosse, what I see is solid white. In my case, I use a 
background image for the '#show', so what I am seeing is the background 
image.

I know Opera has some issue with Opacity but is curious if this can be be 
fixed with your code

Thanks

Original issue reported on code.google.com by chinesedream on 10 Jul 2008 at 4:48

GoogleCodeExporter commented 9 years ago
I recently came across problems with Ken Burns and Slideshow with Opera. Out of 
curiosity what version of 
Opera are you using?

Original comment by aeron.gl...@gmail.com on 11 Jul 2008 at 1:44

GoogleCodeExporter commented 9 years ago
It's Opera 9.5. I first stumble on this bug was 9.5 alpha last December I 
think. 

Original comment by chinesedream on 11 Jul 2008 at 7:41

GoogleCodeExporter commented 9 years ago

Original comment by aeron.gl...@gmail.com on 20 Jul 2008 at 7:13

GoogleCodeExporter commented 9 years ago
I am not able to duplicate the opacity problems - however KenBurns does have 
problems
based on an issue with Mootools and getPosition:

http://mootools.lighthouseapp.com/projects/2706/tickets/23-getposition-returns-w
rong-values-in-opera

As soon as it is fixed in the framework it should work fine with Slideshow.

Original comment by aeron.gl...@gmail.com on 26 Jul 2008 at 7:50

GoogleCodeExporter commented 9 years ago
Thanks for looking into the problem.  Much appreciated!

Original comment by chinesedream on 29 Jul 2008 at 12:54

GoogleCodeExporter commented 9 years ago
Issue 105 has been merged into this issue.

Original comment by aeron.gl...@gmail.com on 21 Aug 2009 at 7:41

GoogleCodeExporter commented 9 years ago

Original comment by aeron.gl...@gmail.com on 21 Aug 2009 at 7:48

GoogleCodeExporter commented 9 years ago
This is still broken in Mootools (or Opera depending on how you look at it) and 
doesn't appear as though it is on the roadmap to be fixed (3 years later). For 
Slideshow.KenBurns with Opera might have better luck with the upcoming jQuery 
version.

Original comment by aeron.gl...@gmail.com on 11 Apr 2011 at 3:13

GoogleCodeExporter commented 9 years ago
where do I insert the following code:

___________________

getPosition: function(relative){
        if (isBody(this)) return {x: 0, y: 0};
        var offset = this.getOffsets(), scroll = this.getScrolls();
        var position = {x: offset.x - scroll.x, y: offset.y - scroll.y};
        var relativePosition = (relative && (relative = $(relative))) ? relative.getPosition() : {x: 0, y: 0};

        if (Browser.Engine.presto925) {
            var position = {x: offset.x, y: offset.y};
        }

        return {x: position.x - relativePosition.x, y: position.y - relativePosition.y};
    },

__________________

URL: 
https://mootools.lighthouseapp.com/projects/2706/tickets/23-getposition-returns-
wrong-values-in-opera

_____________

Thanks

Original comment by westend....@gmail.com on 25 Sep 2011 at 2:59