test.js 640 B

12345678910111213141516171819202122232425
  1. KISSY.add('vogue/test', function (S) {
  2. var PageNotification = S.require('gallery/pageNotification/1.0/index');
  3. var objPN = new PageNotification({
  4. "closeButton": true,
  5. "positionClass": "page-notification-bottom-left",
  6. "onclick": null,
  7. "showDuration": "300",
  8. "hideDuration": "1000",
  9. "timeOut": "5000",
  10. "extendedTimeOut": "1000",
  11. "showEasing": "swing",
  12. "hideEasing": "linear",
  13. "showMethod": "fadeIn",
  14. "hideMethod": "fadeOut"
  15. });
  16. objPN.success("hello world");
  17. }, {requires:
  18. [
  19. 'io'
  20. , 'gallery/pageNotification/1.0/index'
  21. ]
  22. });