[Webkit-unassigned] [Bug 46957] New: Keyframes animation doesn't apply opacity when combined with transform

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Sep 30 20:15:18 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=46957

           Summary: Keyframes animation doesn't apply opacity when
                    combined with transform
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Macintosh Intel
               URL: http://lhenriques.mario.ec/divisiones/industrial/
        OS/Version: Mac OS X 10.6
            Status: UNCONFIRMED
          Severity: Major
          Priority: P2
         Component: CSS
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: mario.estrada at gmail.com


The following keyframe animation doesn't apply the opacity on Safari and latest Webkit nightly. It work well on Chrome.

@-webkit-keyframes 'appear'{
    from{
        -webkit-transform: translate3d(-10px, 0, 0);
        /* left: 20px; */
        opacity: 0;
    }
    to{
        -webkit-transform: translate3d(0, 0, 0);
        /* left: 30px; */
        opacity: 1;
    }
}

When using -webkit-transform the opacity is not animated, if I animate the position using left or margin-left the opacity is animated.

-- 
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