You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
534 B
TypeScript

import { EConfigItemPropsType, EDoneJsonType, IConfigItem } from '../../../types';
export const alternator_svg_file: IConfigItem = {
name: 'alternator',
title: '发电机',
type: EDoneJsonType.File,
config: {
can_zoom: true,
have_anchor: true,
actual_rect: true
},
display: true,
props: {
fill: {
title: '填充色',
type: EConfigItemPropsType.Color,
val: '#00ff00'
}
},
common_animations: {
val: '',
delay: 'delay-0s',
speed: 'slow',
repeat: 'infinite'
}
};