Q1
Single choice
A web designer writes the following CSS3 style:
@keyframes image {
from { opacity: 0.0; }
to { opacity: 1.0; }
}
img {
animation-name: image;
animation-duration: 5s;
}
How do images on the page appear after the page loads?