Currently, I have implemented this code that allows my image to smoothly slide into my website from the right side.
img.move
{
position:relative
-webkit-animation-name: image;
-webkit-animation-iteration-count: once;
-webkit-animation-timing-function: ease;
-webkit-animation-duration: 1s;
}
@-webkit-keyframes image {
0% {
right:-708px;
}
100% {
right: 0;
}
}
However, what I am aiming for is a bit more unique. Instead of starting off as a gray background, I would like the image to appear out of nowhere, only becoming visible when it reaches the white part of the container. Essentially, I want it to look like it is being printed in the corner of the container. Are there any suggestions on how I can achieve this effect?
Thank you for your assistance
EDIT: For further reference, here is the JSFIDDLE http://jsfiddle.net/EpCM7/