[Webkit-unassigned] [Bug 190179] css animation-duration ignored on hover, but respected on viewport change

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Oct 6 21:26:54 PDT 2018


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

--- Comment #4 from cdaringe <cdaringe at gmail.com> ---
in its totality:

<div class='box' />

.box {
  animation-duration: 60000ms;
  animation-iteration-count: infinite;
  animation-name: spin;
  animation-timing-function: linear;
  width: 100px;
  height: 100px;
  background-color: black;
}

.box:hover {
  animation-duration: 1500ms;
  background-color: pink;
}

@keyframes spin {
  from {transform:rotate(0deg);}
  to {transform:rotate(360deg);}
}

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20181007/e591bb2c/attachment.html>


More information about the webkit-unassigned mailing list