修复layer的radius参数无效的bug
parent
89dd67647b
commit
cf610e9d72
|
@ -289,6 +289,7 @@ class Layer {
|
||||||
blur: false,
|
blur: false,
|
||||||
background: null,
|
background: null,
|
||||||
mask: false,
|
mask: false,
|
||||||
|
radius: null,
|
||||||
'mask-close': false,
|
'mask-close': false,
|
||||||
'mask-color': null,
|
'mask-color': null,
|
||||||
fixed: true //是否固定位置
|
fixed: true //是否固定位置
|
||||||
|
@ -606,15 +607,16 @@ class Layer {
|
||||||
case 'blur':
|
case 'blur':
|
||||||
this.props[name] = true
|
this.props[name] = true
|
||||||
break
|
break
|
||||||
|
case 'radius':
|
||||||
|
this.props.radius = val
|
||||||
|
break
|
||||||
case 'left':
|
case 'left':
|
||||||
case 'right':
|
case 'right':
|
||||||
case 'top':
|
case 'top':
|
||||||
case 'bottom':
|
case 'bottom':
|
||||||
if (val !== null) {
|
|
||||||
this.props.from[name] = val
|
this.props.from[name] = val
|
||||||
this.props.to = this.props.from
|
this.props.to = this.props.from
|
||||||
this.removeAttribute(name)
|
this.removeAttribute(name)
|
||||||
}
|
|
||||||
break
|
break
|
||||||
case 'fixed':
|
case 'fixed':
|
||||||
this.fixed = true
|
this.fixed = true
|
||||||
|
|
Reference in New Issue