<view
    s-if="show"
    class="zw-notice-bar-class notice-bar"
    style="
        {{bgColor ? 'background-color: ' + bgColor + ';' : ''}}
    "
>
    <slot>
        <slot name="left-icon"></slot>
        <view class="text-container">
            <slot name="text">
                <text
                    class="text zw-notice-bar-text-class"
                    bind:transitionend="aniEndHdl"
                    style="
                        {{textColor ? 'color: ' + textColor + ';' : ''}}
                        padding-left: {{infinite ? containerWidth + 'px' : ''}};
                    "
                    animation="{{animationData}}"
                    bind:tap="clickText"
                >{{text}}</text>
            </slot>
        </view>
        <slot name="right-icon">
            <zw-icon s-if="{{icon}}" class="close-icon" name="{{iconName}}" color="{{iconColor}}" bind:tap="closeHdl">
            </zw-icon>
        </slot>
    </slot>
</view>
