I have a image that I ease into view with jQuery.
<style>
#box
{
position:relative;
left:-400px;
height:50px;
width:100px;
}
</style>
$(document).ready(function()
{
var method;
$("#clickme").toggle(function()
{
method = $("#box").attr("class");
$("#box").animate({left:"50%"},{duration: 1000,easing: method});
},function()
{
method = $("#box").attr("class");
$("#box").animate({left:"-400px"},{duration: 1000,easing: method});
});
});
It is about 400x600px and the rendering of the image sliding in is smooth but chunky.
It will during the animation look like this at times:
| |
| |
| |
| |
| |
| |
If | are the edges of the image.
Is this just because of my browsers/computers rendering capabilities? Chrome/FF/Safari on a Netbook.