index.sjs 680 B

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