12345678910111213141516171819202122232425 |
- KISSY.add('vogue/test', function (S) {
- var PageNotification = S.require('gallery/pageNotification/1.0/index');
-
- var objPN = new PageNotification({
- "closeButton": true,
- "positionClass": "page-notification-bottom-left",
- "onclick": null,
- "showDuration": "300",
- "hideDuration": "1000",
- "timeOut": "5000",
- "extendedTimeOut": "1000",
- "showEasing": "swing",
- "hideEasing": "linear",
- "showMethod": "fadeIn",
- "hideMethod": "fadeOut"
- });
-
- objPN.success("hello world");
- }, {requires:
- [
- 'io'
- , 'gallery/pageNotification/1.0/index'
- ]
- });
|