You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I have a CSS animation that plays on page load, it does not play even after a delay.
Here's an example:
<!DOCTYPE html><html><head><title>POC</title><style>
body {
animation: fade-in 1s ease-in-out 0s 1 normal forwards;
opacity: 0;
}
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
</style></head><body><h1>Hello, this is a proof of concept!</h1></body></html>
And running webkit2png:
webkit2png --delay=5 index.html
The result is 3 blank images, when it should be the text "Hello, this is a proof of concept!".
The text was updated successfully, but these errors were encountered:
+1 - I am trying to take a screenshot of a site that has several animations as items come into the viewport and they all are missing from the resulting png.
If I have a CSS animation that plays on page load, it does not play even after a delay.
Here's an example:
And running webkit2png:
The result is 3 blank images, when it should be the text "Hello, this is a proof of concept!".
The text was updated successfully, but these errors were encountered: