网友回复
1 注册css自定义属性
if ('registerProperty' in CSS ) {
CSS.registerProperty({
name: '--color',
syntax: '<color>', // 此处可以表示列表 syntax: '<transform-function>+',
inherits: true,
initialValue: 'rgba(0, 0, 0, 1)' // initialValue: 'rotate(90deg) translateX(5rem)'
})
}
...点击查看剩余70%


