Skip to main content

keyframes-name-pattern

指定关键帧名称的模式。

¥Specify a pattern for keyframe names.

@keyframes slide-right {}
/** ↑

* The pattern of this */

选项

¥Options

string

指定未用 "/" 括起来的正则表达式字符串。

¥Specify a regex string not surrounded with "/".

鉴于:

¥Given:

{
"keyframes-name-pattern": "foo-.+"
}

以下模式被视为问题:

¥The following patterns are considered problems:

@keyframes foo {}
@keyframes bar {}
@keyframes FOO-bar {}

以下模式不被视为问题:

¥The following patterns are not considered problems:

@keyframes foo-bar {}