猿问

weex提供的设置中心点,为什么有一种情况在手机上调试只能left top?

weex提供的animation中transformOrigin设置中心点,为什么有一种情况在手机上调试只能left top?

animation的style只是单纯的改变width height,不使用transform的情况下,transformOrigin设置中心点无效;
代码如下:

animation.transition(target, {

  styles: {

    opacity: '0.95',

    transformOrigin: 'right top',//这里都是left top

    width: 300,

    height: 292

  },

  duration: 300,

  timingFunction: 'ease-out',

  delay: 0

}, function() {


})

无论怎么设置transformOrigin在Android端都是和left top效果一样。

调测环境:
weex sdk 0.10.0
Android


慕村9548890
浏览 1005回答 2
2回答

qq_笑_17

transformOrigin 和transform 一起使用结果无论Android、ios端都是和left top效果,请问你是怎么解决的。demo地址

四季花海

This property must be used together with the transform property.
随时随地看视频慕课网APP
我要回答