BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
resources
/
views
/
default
/
components
📤 Upload
📝 New File
📁 New Folder
Close
Editing: split-words.blade.php
<?php $splitted_text = ''; $words = explode(' ', $text); $transition_delay = ''; $i = 0; foreach ( $words as $key => $word ) { $space = $key > 0 ? ' ' : ''; if ( $transitionDelayStart > 0 || $transitionDelayStep > 0 ) { $transition_delay = 'transition-delay:' . $transitionDelayStart + ($i * $transitionDelayStep) . 's'; } $splitted_text .= sprintf( '%2$s<span class="inline-flex lqd-split-text-words [background:inherit]" style="%3$s">%1$s</span>', $word, $space, $transition_delay ); $i++; } ?> {!! $splitted_text !!}
Save
Cancel