Skip to content

Commit

Permalink
fix(components): iOS8需要添加webkit前缀 (#4519)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouchengi authored and luckyadam committed Sep 24, 2019
1 parent 2d06388 commit 08d0a3c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ export default class PickerGroup extends Nerv.Component {
const transition = this.touchEnd ? 0.3 : 0
return `transform: translate3d(0, ${
this.props.height
}px, 0);transition: transform ${transition}s;`
}px, 0);-webkit-transform: translate3d(0, ${
this.props.height
}px, 0);transition: transform ${transition}s;-webkit-transition: transform ${transition}s;`
}

formulaUnlimitedScroll (range, absoluteHeight, direction) {
Expand Down

0 comments on commit 08d0a3c

Please sign in to comment.