That website is using flash, which is a
very old way of doing simple animations.
You don't need a program, flash, or jQuery now, you can use
CSS animations.
Code:
@-webkit-keyframes fade {
0% { zoom: 0; }
100% { zoom: 1; }
}
@-moz-keyframes fade {
0% { zoom: 0; }
100% { zoom: 1; }
}
@-o-keyframes fade {
0% { zoom: 0; }
100% { zoom: 1; }
}
@keyframes fade {
0% { zoom: 0; }
100% { zoom: 1; }
}
.photo {
zoom: 0;
-webkit-animation: fade 5s;
-moz-animation: fade 5s;
-o-animation: fade 5s;
animation: fade 5s;
}
Just fiddle around with this and you should get it to go.
EDIT: I forgot to put "fade" in the keyframes, fixed.