Skip to content

Commit eaa995e

Browse files
author
mayintao3
committed
feat: 解析单个的fill mode
1 parent e01ae73 commit eaa995e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parse_style_properties.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ pub fn parse_style_properties(properties: &Vec<(String, Property)>, keyframes_ma
241241
final_properties.push(StyleValueType::Animation(Animation::from((id.to_string(), value, Some(keyframes_map.clone())))))
242242
}
243243
}
244-
"animationDelay" | "animationDuration" | "animationIterationCount" | "animationTimingFunction" => {
244+
"animationDelay" | "animationDuration" | "animationIterationCount" | "animationTimingFunction" | "animationFillMode" => {
245245
final_properties.push(StyleValueType::Animation(Animation::from((id.to_string(), value, None))))
246246
}
247247
"zIndex" => {

0 commit comments

Comments
 (0)