[Webkit-unassigned] [Bug 27652] REGRESSION(r46105-r46282): -webkit-transform scale() animation
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue Jul 28 09:21:57 PDT 2009
https://bugs.webkit.org/show_bug.cgi?id=27652
--- Comment #3 from guillaume.esquevin at gmail.com 2009-07-28 09:21:56 PDT ---
Here is the CSS I use on this text. It runs perfectly and smoothly in the
latest safari, but is buggy and laggish in webkit nightly
@-webkit-keyframes title {
0% {
opacity:1;
-webkit-transform: scale(5);
}
80% {
-webkit-transform: scale(1);
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: scale(0.05);
}
}
h1 {
text-transform: uppercase;
font-size: 10em;
font-family: "arial bold";
letter-spacing: -0.1em;
width: 4em;
position: absolute;
top: 50%;
left: 50%;
margin: -1em 0 0 -2em;
line-height: 0.7;
text-align: center;
-webkit-text-stroke: 0.05em #FFCC00;
color: transparent;
opacity: 0;
-webkit-animation: title 7s 1 linear;
-webkit-animation-delay: 3s;
}
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list