skeleton.wxs 574 B

123456789101112131415161718192021222324252627282930313233
  1. var getStyle = function (object) {
  2. var styleStr = '';
  3. styleStr +=
  4. 'width:' +
  5. object.width +
  6. ';' +
  7. 'height:' +
  8. (object.height || '16px') +
  9. ';' +
  10. 'background:' +
  11. object.background +
  12. ';' +
  13. 'background-color:' +
  14. object.backgroundColor +
  15. ';' +
  16. 'margin:' +
  17. object.margin +
  18. ';' +
  19. 'margin-right:' +
  20. object.marginRight +
  21. ';' +
  22. 'margin-left:' +
  23. object.marginLeft +
  24. ';' +
  25. 'border-radius:' +
  26. object.borderRadius +
  27. ';';
  28. return styleStr;
  29. };
  30. module.exports = {
  31. getStyle: getStyle,
  32. };