81cd312e by Jeff Balicki

sss

Signed-off-by: Jeff <jeff@gotenzing.com>
1 parent 677dd3e1
......@@ -25001,6 +25001,18 @@
};
new Swiper(this, swiper_params);
});
text_change();
function text_change() {
var words = ['Smile', 'Dance', 'Celebrate', 'Hike', 'Laugh', 'Play', 'Explore', 'Discover', 'Climb', 'Parent', 'Adventure', ''];
$.each(words, function (index, value) {
setTimeout(function () {
$(".like-you strong").text(value);
if (words.length - 1 == index) {
text_change();
}
}, index * 1000);
});
}
});
var a = document.querySelector('.blur-image');
......
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
This diff could not be displayed because it is too large.
......@@ -56,11 +56,24 @@ jQuery(document).ready(function($) {
new Swiper(this, swiper_params);
});
//text_change();
text_change();
function text_change(){
var words = [ 'Dance', 'Smile','Party','Sing',''];
var words = [ 'Smile',
'Dance',
'Celebrate',
'Hike',
'Laugh',
'Play',
'Explore',
'Discover',
'Climb',
'Parent',
'Adventure',
''];
$.each(words, function( index, value ) {
setTimeout( function(){
setTimeout(function(){
$(".like-you strong").text(value);
if( (words.length - 1) == index){
text_change();
......
......@@ -5,7 +5,7 @@
Author: the Understrap Contributors
Author URI: https://github.com/understrap/understrap-child/graphs/contributors
Template: understrap
Version: 1.2.0012
Version: 1.2.0013
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: understrap-child
......