first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
/**
* Animated after text template
*/
$settings = $this->get_settings_for_display();
?>
<div class="jet-animated-text__after-text">
<?php
echo '&nbsp;' . $this->str_to_spanned_html( $settings['after_text_content'], 'word' );
?>
</div>

View File

@@ -0,0 +1,6 @@
<?php
/**
* Features list end template
*/
?>
</div>

View File

@@ -0,0 +1,25 @@
<?php
/**
* Animated text list template
*/
$item_text = $this->__loop_item( array( 'item_text' ) );
$classes[] = 'jet-animated-text__animated-text-item';
$settings = $this->get_settings_for_display();
if ( 0 == $this->__processed_index ) {
$classes[] = 'active';
$classes[] = 'visible';
}
$direction = $this->__loop_item( array( 'item_text_direction' ) );
$split_type = ( 'fx12' === $settings['animation_effect'] ) ? 'symbol' : $settings['split_type'];
?>
<div class="<?php echo implode( ' ', $classes ); ?>" dir="<?php echo esc_attr( $direction ); ?>">
<?php
echo $this->str_to_spanned_html( $item_text, $split_type );
$classes = array();
?>
</div>

View File

@@ -0,0 +1,6 @@
<?php
/**
* Animated text list start template
*/
?>
<div class="jet-animated-text__animated-text">

View File

@@ -0,0 +1,11 @@
<?php
/**
* Animated before text template
*/
$settings = $this->get_settings_for_display();
?>
<div class="jet-animated-text__before-text">
<?php
echo $this->str_to_spanned_html( $settings['before_text_content'], 'word' ) . '&nbsp;';
?>
</div>

View File

@@ -0,0 +1,17 @@
<?php
/**
* Animated text list template
*/
$settings = $this->get_settings_for_display();
$data_settings = $this->generate_setting_json();
$classes[] = 'jet-animated-text';
$classes[] = 'jet-animated-text--effect-' . $settings['animation_effect'];
$tag = ! empty( $settings['html_tag'] ) ? $settings['html_tag'] : 'div';
?>
<<?php echo $tag; ?> class="<?php echo implode( ' ', $classes ); ?>" <?php echo $data_settings; ?>>
<?php $this->__glob_inc_if( 'before-text', array( 'before_text_content' ) ); ?>
<?php $this->__get_global_looped_template( 'animated-text', 'animated_text_list' ); ?>
<?php $this->__glob_inc_if( 'after-text', array( 'after_text_content' ) ); ?>
</<?php echo $tag; ?>>