Re: [csswg-drafts] [css-animation] Motion Blur (#3837)

to recap some of the conversation and attempt alignment, here's the syntax I feel we're converging on:

```css
.animated-layer {
  animation: rotate-forever .5s linear infinite;
  motion-rendering: blur; /* inherit | initial | auto | none | blur */

  /* throwing shutter angle in, would love to have it, but feels like a complexity multiplier */
  motion-shutter-angle: 180deg; /* inherit | initial | auto = 180deg | 0deg - 720deg */
}

@keyframes rotate-forever {
  to {
    transform: rotate(1turn);
  }
}
```

what tweaks would you like to see to the above? 

-- 
GitHub Notification of comment by argyleink
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/3837#issuecomment-488306632 using your GitHub account

Received on Wednesday, 1 May 2019 15:00:30 UTC