Working with CSS3 I see no reason why a CSS based Ken burns effect would not work. My first attempt involved using Jquery to add a new class to a background image.
.flare1 {
background-position:-50.1px -50.1px !important;
-webkit-transition: all 5s ease-in-out;
}
function gallery() {
$('.cornerimg').addClass('flare1');
}
This worked but is frightfully jerky. So I am considering a different approach. How would it be if the images were set with a class animation from the beginning. I am not familiar with the CSS3 animations, only the transitions, however the purpose being to apply a permanent class to a series of images that caused them to Ken Burn smoothly all the time.
I have prepared a lovely testing ground for anyone fancying a go. http://jsfiddle.net/gxUhH/10/
All set up based on my initial code.
Any ideas?
Marvellous
EDIT --
Well chaps I found this that appears to be very smooth. What I cannot see is what about it is different. They are using the translate function in web-kit instead but when I tried that it just jumped. Take a look. http://thing13.net/2010/02/css3-ken-burns-effect-2/