12345678910111213141516171819202122232425262728293031 |
- import { SuperComponent, ComponentsOptionsType } from '../common/src/index';
- export default class NoticeBar extends SuperComponent {
- externalClasses: string[];
- options: ComponentsOptionsType;
- properties: import("./type").TdNoticeBarProps;
- data: {
- prefix: string;
- classPrefix: string;
- loop: number;
- };
- observers: {
- marquee(val: any): void;
- visible(visible: any): void;
- };
- lifetimes: {
- created(): void;
- detached(): void;
- ready(): void;
- };
- methods: {
- initAnimation(): void;
- startScrollAnimation(isFirstScroll?: boolean): void;
- show(): void;
- clearNoticeBarAnimation(): void;
- setIcon(): void;
- clickPrefixIcon(): void;
- clickContent(): void;
- clickSuffixIcon(): void;
- clickExtra(): void;
- };
- }
|