Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 521 Bytes

File metadata and controls

42 lines (29 loc) · 521 Bytes

keyframes-name-pattern

Specify a pattern for keyframe names.

@keyframes slide-right {}
/**             ↑
 * The pattern of this */

选项

regex|string

A string will be translated into a RegExp — new RegExp(yourString) — so be sure to escape properly.

Given the string:

"foo-.+"

以下模式被视为违规:

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

以下模式被视为违规:

@keyframes foo-bar {}