Webkit transitionEnd event grouping

前端 未结 5 1755
逝去的感伤
逝去的感伤 2021-01-07 07:08

I have a HTML element to which I have attached a webkitTransitionEnd event.

function transEnd(event) {
    alert( \"Finished transition!\" );

}

var node =         


        
5条回答
  •  情深已故
    2021-01-07 07:31

    If you are using webkit I assume you are mobilizing a web-application for cross platform access.

    If so have you considered abstracting the cross platform access at the web-app presentation layer ?

    Webkit does not provide native look-and-feel on mobile devices but this is where a new technology can help.

提交回复
热议问题