优化layer动画触发
parent
e8474c869b
commit
eb3d26ea4a
|
@ -377,9 +377,11 @@ class Layer extends Component {
|
|||
this.#play()
|
||||
}
|
||||
|
||||
updated() {
|
||||
updated(props, force) {
|
||||
if (force) {
|
||||
this.#play()
|
||||
}
|
||||
}
|
||||
|
||||
moveTo(obj = {}) {
|
||||
var css = ''
|
||||
|
@ -524,7 +526,7 @@ function layer(opt = {}) {
|
|||
tmp.innerHTML = content
|
||||
|
||||
layDom.appendChild(tmp.content.cloneNode(true))
|
||||
layDom.updated()
|
||||
layDom.updated(null, true)
|
||||
} else {
|
||||
layDom.innerHTML = content
|
||||
document.body.appendChild(layDom)
|
||||
|
|
Loading…
Reference in New Issue