wswmsword / postcss-mobile-forever

一款 PostCSS 插件,将固定尺寸的视图转为可跟随宽度变化而等比例伸缩的视图。To adapt different displays by one mobile viewport.
https://wswmsword.github.io/examples/mobile-forever/vanilla/
MIT License
325 stars 19 forks source link

`@keyframes` 里的尺寸样式不会被转换 #44

Closed hooray closed 4 months ago

hooray commented 4 months ago
@keyframes sticky-parallax-header-move-and-size {
  from {
    height: 100px;
  }

  to {
    height: 60px;
  }
}

Hi,我在实现关于 css 动画的时候发现,以上这段代码会被原封不动输出,并没有将 height 属性转成 vw/vh 单位,是有意避开了 @keyframes 中的代码,还是没有考虑到这种场景?

wswmsword commented 4 months ago

现在是直接跳过所有的 at 规则,这个之前是为了跳过媒体查询,的确没想到动画之类的场景,近期我完善下。

hooray commented 4 months ago

现在是直接跳过所有的 at 规则,这个之前是为了跳过媒体查询,的确没想到动画之类的场景,近期我完善下。

🤗感谢

wswmsword commented 4 months ago

小意思,版本 4.1.5 已添加 @keyframes 转换支持。