add fade to MFM options
This commit is contained in:
parent
006358540c
commit
a4f075271f
|
@ -253,6 +253,16 @@ export default defineComponent({
|
|||
style = `background-color: #${color};`;
|
||||
break;
|
||||
}
|
||||
case "fade": {
|
||||
const direction = token.props.args.out
|
||||
? "alternate-reverse"
|
||||
: "alternate";
|
||||
const speed = validTime(token.props.args.speed) || "1.5s";
|
||||
style =
|
||||
this.$store.state.animatedMfm && !reducedMotion()
|
||||
? `animation: mfm-fade ${speed} linear infinite; animation-direction: ${direction};`
|
||||
: "";
|
||||
}
|
||||
}
|
||||
if (style == null) {
|
||||
return h("span", {}, [
|
||||
|
|
Loading…
Reference in New Issue