|
| 1 | +jQuery(document).ready(function ($) { |
| 2 | + var animationDelay = 2500, |
| 3 | + barAnimationDelay = 3800, |
| 4 | + barWaiting = barAnimationDelay - 3e3, |
| 5 | + lettersDelay = 50, |
| 6 | + typeLettersDelay = 150, |
| 7 | + selectionDuration = 500, |
| 8 | + typeAnimationDelay = selectionDuration + 800, |
| 9 | + revealDuration = 600, |
| 10 | + revealAnimationDelay = 1500; |
| 11 | + initHeadline(); |
| 12 | + function initHeadline() { |
| 13 | + singleLetters($(".cd-headline.letters").find("b")); |
| 14 | + animateHeadline($(".cd-headline")); |
| 15 | + } |
| 16 | + function singleLetters($words) { |
| 17 | + $words.each(function () { |
| 18 | + var word = $(this), |
| 19 | + letters = word.text().split(""), |
| 20 | + selected = word.hasClass("is-visible"); |
| 21 | + for (i in letters) { |
| 22 | + if (word.parents(".rotate-2").length > 0) |
| 23 | + letters[i] = "<em>" + letters[i] + "</em>"; |
| 24 | + letters[i] = selected |
| 25 | + ? '<i class="in">' + letters[i] + "</i>" |
| 26 | + : "<i>" + letters[i] + "</i>"; |
| 27 | + } |
| 28 | + var newLetters = letters.join(""); |
| 29 | + word.html(newLetters).css("opacity", 1); |
| 30 | + }); |
| 31 | + } |
| 32 | + function animateHeadline($headlines) { |
| 33 | + var duration = animationDelay; |
| 34 | + $headlines.each(function () { |
| 35 | + var headline = $(this); |
| 36 | + if (headline.hasClass("loading-bar")) { |
| 37 | + duration = barAnimationDelay; |
| 38 | + setTimeout(function () { |
| 39 | + headline.find(".cd-words-wrapper").addClass("is-loading"); |
| 40 | + }, barWaiting); |
| 41 | + } else if (headline.hasClass("clip")) { |
| 42 | + var spanWrapper = headline.find(".cd-words-wrapper"), |
| 43 | + newWidth = spanWrapper.width() + 10; |
| 44 | + spanWrapper.css("width", newWidth); |
| 45 | + } else if (!headline.hasClass("type")) { |
| 46 | + var words = headline.find(".cd-words-wrapper b"), |
| 47 | + width = 0; |
| 48 | + words.each(function () { |
| 49 | + var wordWidth = $(this).width(); |
| 50 | + if (wordWidth > width) width = wordWidth; |
| 51 | + }); |
| 52 | + headline.find(".cd-words-wrapper").css("width", width); |
| 53 | + } |
| 54 | + setTimeout(function () { |
| 55 | + hideWord(headline.find(".is-visible").eq(0)); |
| 56 | + }, duration); |
| 57 | + }); |
| 58 | + } |
| 59 | + function hideWord($word) { |
| 60 | + var nextWord = takeNext($word); |
| 61 | + if ($word.parents(".cd-headline").hasClass("type")) { |
| 62 | + var parentSpan = $word.parent(".cd-words-wrapper"); |
| 63 | + parentSpan.addClass("selected").removeClass("waiting"); |
| 64 | + setTimeout(function () { |
| 65 | + parentSpan.removeClass("selected"); |
| 66 | + $word |
| 67 | + .removeClass("is-visible") |
| 68 | + .addClass("is-hidden") |
| 69 | + .children("i") |
| 70 | + .removeClass("in") |
| 71 | + .addClass("out"); |
| 72 | + }, selectionDuration); |
| 73 | + setTimeout(function () { |
| 74 | + showWord(nextWord, typeLettersDelay); |
| 75 | + }, typeAnimationDelay); |
| 76 | + } else if ($word.parents(".cd-headline").hasClass("letters")) { |
| 77 | + var bool = |
| 78 | + $word.children("i").length >= nextWord.children("i").length |
| 79 | + ? true |
| 80 | + : false; |
| 81 | + hideLetter($word.find("i").eq(0), $word, bool, lettersDelay); |
| 82 | + showLetter(nextWord.find("i").eq(0), nextWord, bool, lettersDelay); |
| 83 | + } else if ($word.parents(".cd-headline").hasClass("clip")) { |
| 84 | + $word.parents(".cd-words-wrapper").animate( |
| 85 | + { |
| 86 | + width: "2px", |
| 87 | + }, |
| 88 | + revealDuration, |
| 89 | + function () { |
| 90 | + switchWord($word, nextWord); |
| 91 | + showWord(nextWord); |
| 92 | + } |
| 93 | + ); |
| 94 | + } else if ($word.parents(".cd-headline").hasClass("loading-bar")) { |
| 95 | + $word.parents(".cd-words-wrapper").removeClass("is-loading"); |
| 96 | + switchWord($word, nextWord); |
| 97 | + setTimeout(function () { |
| 98 | + hideWord(nextWord); |
| 99 | + }, barAnimationDelay); |
| 100 | + setTimeout(function () { |
| 101 | + $word.parents(".cd-words-wrapper").addClass("is-loading"); |
| 102 | + }, barWaiting); |
| 103 | + } else { |
| 104 | + switchWord($word, nextWord); |
| 105 | + setTimeout(function () { |
| 106 | + hideWord(nextWord); |
| 107 | + }, animationDelay); |
| 108 | + } |
| 109 | + } |
| 110 | + function showWord($word, $duration) { |
| 111 | + if ($word.parents(".cd-headline").hasClass("type")) { |
| 112 | + showLetter($word.find("i").eq(0), $word, false, $duration); |
| 113 | + $word.addClass("is-visible").removeClass("is-hidden"); |
| 114 | + } else if ($word.parents(".cd-headline").hasClass("clip")) { |
| 115 | + $word.parents(".cd-words-wrapper").animate( |
| 116 | + { |
| 117 | + width: $word.width() + 10, |
| 118 | + }, |
| 119 | + revealDuration, |
| 120 | + function () { |
| 121 | + setTimeout(function () { |
| 122 | + hideWord($word); |
| 123 | + }, revealAnimationDelay); |
| 124 | + } |
| 125 | + ); |
| 126 | + } |
| 127 | + } |
| 128 | + function hideLetter($letter, $word, $bool, $duration) { |
| 129 | + $letter.removeClass("in").addClass("out"); |
| 130 | + if (!$letter.is(":last-child")) { |
| 131 | + setTimeout(function () { |
| 132 | + hideLetter($letter.next(), $word, $bool, $duration); |
| 133 | + }, $duration); |
| 134 | + } else if ($bool) { |
| 135 | + setTimeout(function () { |
| 136 | + hideWord(takeNext($word)); |
| 137 | + }, animationDelay); |
| 138 | + } |
| 139 | + if ($letter.is(":last-child") && $("html").hasClass("no-csstransitions")) { |
| 140 | + var nextWord = takeNext($word); |
| 141 | + switchWord($word, nextWord); |
| 142 | + } |
| 143 | + } |
| 144 | + function showLetter($letter, $word, $bool, $duration) { |
| 145 | + $letter.addClass("in").removeClass("out"); |
| 146 | + if (!$letter.is(":last-child")) { |
| 147 | + setTimeout(function () { |
| 148 | + showLetter($letter.next(), $word, $bool, $duration); |
| 149 | + }, $duration); |
| 150 | + } else { |
| 151 | + if ($word.parents(".cd-headline").hasClass("type")) { |
| 152 | + setTimeout(function () { |
| 153 | + $word.parents(".cd-words-wrapper").addClass("waiting"); |
| 154 | + }, 200); |
| 155 | + } |
| 156 | + if (!$bool) { |
| 157 | + setTimeout(function () { |
| 158 | + hideWord($word); |
| 159 | + }, animationDelay); |
| 160 | + } |
| 161 | + } |
| 162 | + } |
| 163 | + function takeNext($word) { |
| 164 | + return !$word.is(":last-child") |
| 165 | + ? $word.next() |
| 166 | + : $word.parent().children().eq(0); |
| 167 | + } |
| 168 | + function takePrev($word) { |
| 169 | + return !$word.is(":first-child") |
| 170 | + ? $word.prev() |
| 171 | + : $word.parent().children().last(); |
| 172 | + } |
| 173 | + function switchWord($oldWord, $newWord) { |
| 174 | + $oldWord.removeClass("is-visible").addClass("is-hidden"); |
| 175 | + $newWord.removeClass("is-hidden").addClass("is-visible"); |
| 176 | + } |
| 177 | +}); |
0 commit comments