' . '' . ''; $output .= '' . '
' . '
'; return $output; } /** * @param $width * @param $i * @return string */ public function containerHtmlBlockParams( $width, $i ) { return 'class="vc_gitem-animated-block-content"'; } /** * @return array */ public static function animations() { return array( esc_html__( 'Single block (no animation)', 'js_composer' ) => '', esc_html__( 'Double block (no animation)', 'js_composer' ) => 'none', esc_html__( 'Fade in', 'js_composer' ) => 'fadeIn', esc_html__( 'Scale in', 'js_composer' ) => 'scaleIn', esc_html__( 'Scale in with rotation', 'js_composer' ) => 'scaleRotateIn', esc_html__( 'Blur out', 'js_composer' ) => 'blurOut', esc_html__( 'Blur scale out', 'js_composer' ) => 'blurScaleOut', esc_html__( 'Slide in from left', 'js_composer' ) => 'slideInRight', esc_html__( 'Slide in from right', 'js_composer' ) => 'slideInLeft', esc_html__( 'Slide bottom', 'js_composer' ) => 'slideBottom', esc_html__( 'Slide top', 'js_composer' ) => 'slideTop', esc_html__( 'Vertical flip in with fade', 'js_composer' ) => 'flipFadeIn', esc_html__( 'Horizontal flip in with fade', 'js_composer' ) => 'flipHorizontalFadeIn', esc_html__( 'Go top', 'js_composer' ) => 'goTop20', esc_html__( 'Go bottom', 'js_composer' ) => 'goBottom20', ); } }