index.wxs 624 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* eslint-disable */
  2. function wrapStyle(data) {
  3. var style = '';
  4. if (data.transform) {
  5. style += 'transform: translate3d(0, ' + data.transform + 'px, 0);';
  6. }
  7. if (data.fixed) {
  8. style += 'top: ' + data.offsetTop + 'px;';
  9. }
  10. if (data.zIndex) {
  11. style += 'z-index: ' + data.zIndex + ';';
  12. }
  13. return style;
  14. }
  15. function containerStyle(data) {
  16. var style = '';
  17. if (data.fixed) {
  18. style += 'height: ' + data.height + 'px;';
  19. }
  20. if (data.zIndex) {
  21. style += 'z-index: ' + data.zIndex + ';';
  22. }
  23. return style;
  24. }
  25. module.exports = {
  26. wrapStyle: wrapStyle,
  27. containerStyle: containerStyle
  28. };