Re: [csswg-drafts] [css-transitions]/[css-animations] Proposal: Allow velocity values for transition-duration and animation-duration (#5091)

I would suspect them to be independant, because that would be the deterministic result of the rules given:

```js
#element {
  animation: anim1 1s;
  animation: anim2 2s;
}

@keyframes anim1 {
  from { width: 0px }
  to { width: 100px }

@keyframes anim2 {
  from { height: 0px }
  to { height: 200px }
}
```

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

Received on Sunday, 24 May 2020 13:00:05 UTC