w3tweaks.com
  • Effects
    • Scroll Effects
    • Text Effects
    • Shadow
  • Essentials
    • Arrows
    • Buttons
    • Background Patterns
    • Border Examples
    • Cards
    • Color Palettes
    • Dividers
    • Link styles
    • Loaders
    • Modal Windows
    • Notifications
    • Progress bar
    • Quote styles
    • Spinner
    • Tooltips
  • Media
    • Calendars
    • Carousels
    • Clocks
    • Gallery
    • Music Players
    • Sliders
    • Slideshows
    • Tables
    • Thumbnails
  • Navigation
  • Inputs
    • Range Sliders
    • Checkboxes
    • Toggle Switches
  • Script
    • Angularjs
    • Backbone.js
    • bootstrap
    • jQuery
    • ReactJs
    • JavaScript
    • Syntax Highlighters
    • tryit editor
    • PHP
  • API’s
    • Facebook
    • Google
    • Indeed
    • Twitter
    • YouTube
  • Tools
w3tweaks.com
Home CSS Code Demos

CSS Letter Bouncing Animation Text effect

September 19, 2019
in CSS Code Demos

This tutorial will show how to make CSS text bouncing effect with Animation using HTML, CSS and JavaScript. You have use this concept when new page loaded. When you have use this concept your website looks like very awesome. Text with individually bouncing letters using CSS animations, plus a little bit of JavaScript to apply the animation at different times for each character. Demo and download avilable.

You might also like

CSS Shapes Forest Collection Spring Summer 2020

CSS Button Concept for Remove and Success

Three Pure different CSS Button effects

Easy customizable simple CSS buttons

Rounded CSS buttons with mouseover effect

Collection of CSS3 animated buttons to spice up your site

Demo / Download

AuthorSteve Robertson
CreatedSEPTEMBER 2, 2015
LicenseOpen
Compatible browsersChrome, Firefox, Safari

HTML Code

 <div>      <p id="bounceTxt">W3tweaks</p> </div> 

CSS Code

 @import url(https://fonts.googleapis.com/css?family=Montserrat+Alternates:400,700);  div {      position: absolute;      top: 50%;      width: 100%; }  p {      color: #265687;      font-family: "Montserrat Alternates", sans-serif;      font-size: 72px;      font-weight: 400;      letter-spacing: -0.05em;      text-align: center;      text-shadow: 3px 5px 5px rgba(0, 0, 0, .3);            em {           font-style: normal;           display: inline-block;                      &:nth-child(1) {                color: #4285F4;           }            &:nth-child(2) {                color: #E94D3D;           }            &:nth-child(3) {                color:#F7C945;           }            &:nth-child(4) {                color: #4285F4;           }            &:nth-child(5) {                   color: #34A853;           }            &:nth-child(6) {                color: #E94D3D;           }                      &.bounce-me {                -webkit-animation: bounce 4s infinite ease-in-out;                animation: bounce 4s infinite ease-in-out;           }      } }  @-webkit-keyframes bounce {      60% {           -webkit-transform: translate(0px, -200px) scale(1.2);           opacity: 0.8;           text-shadow: 0px 150px 20px rgba(0, 0, 0, 0.8);      } }  @keyframes bounce {      60% {           -webkit-transform: translate(0px, -200px) scale(1.2);           opacity: 0.8;           text-shadow: 0px 150px 20px rgba(0, 0, 0, 0.8);      } }  

JavaScript

var      myText = document.getElementById("bounceTxt").innerHTML,     wrapText = "";  for (var i=0; i<myText.length; i++) {      wrapText += "<em>" + myText.charAt(i) + "</em>"; }  document.getElementById("bounceTxt").innerHTML = wrapText;  var      myLetters = document.getElementsByTagName("em"),     j = 0;  function applyBounce() {      setTimeout(function() {           myLetters[j].className = "bounce-me";           j++;                      if (j < myLetters.length) {                applyBounce();           }      }, 250); }  applyBounce();

Preview

CSS Letter Bouncing Animation Text effect Preview

Tags: animation effectsbouncingbouncing text effectscss bouncingcss demo designscss effectscss examplecss frontendcss html animation examplecss javascript animationCSS TEXT EFFECTScss3 animationeffecteffectsfrontend animationfrontend examplehtml animationhtml css animationtexttext effects
Previous Post

CSS Animated Modal Window

Next Post

CSS buttons using unicode symbols

Related Stories

CSS Shapes Forest Collection Spring Summer 2020
CSS Code Demos

CSS Shapes Forest Collection Spring Summer 2020

October 11, 2020
CSS Button Concept for Remove and Success
CSS Code Demos

CSS Button Concept for Remove and Success

August 21, 2019
Three Pure different CSS Button effects
CSS Code Demos

Three Pure different CSS Button effects

September 25, 2019
Easy customizable simple CSS buttons
CSS Code Demos

Easy customizable simple CSS buttons

September 8, 2019
Rounded CSS buttons with mouseover effect
CSS Code Demos

Rounded CSS buttons with mouseover effect

September 8, 2019
Collection of CSS3 animated buttons to spice up your site
CSS Code Demos

Collection of CSS3 animated buttons to spice up your site

September 8, 2019
CSS buttons using unicode symbols
CSS Code Demos

CSS buttons using unicode symbols

September 20, 2019
CSS Animated Modal Window
CSS Code Demos

CSS Animated Modal Window

September 21, 2019

Discussion about this post

Follow Us

Popular Posts

100 Creative CSS Cards

44 Free Multi step HTML forms

13 Free HTML & CSS Dashboard Template Designs

49 CSS Tables

20 HTML & CSS pricing tables

14 Best CSS Dark Mode

11 CSS Shopping Cart UI/UX

42 Cool CSS Avatars For Better UI

55 Useful handpicked CSS Buttons with examples and demos

89 Best CSS Toggle Switches

w3tweaks

We bring you the best frontend collections that will fix perfect for news, magazine, personal blog, etc. Check our landing page for details.

  • Effects
    • Scroll Effects
    • Text Effects
    • Shadow
  • Essentials
    • Arrows
    • Buttons
    • Background Patterns
    • Border Examples
    • Cards
    • Color Palettes
    • Dividers
    • Link styles
    • Loaders
    • Modal Windows
    • Notifications
    • Progress bar
    • Quote styles
    • Spinner
    • Tooltips
  • Media
    • Calendars
    • Carousels
    • Clocks
    • Gallery
    • Music Players
    • Sliders
    • Slideshows
    • Tables
    • Thumbnails
  • Navigation
  • Inputs
    • Range Sliders
    • Checkboxes
    • Toggle Switches
  • Script
    • Angularjs
    • Backbone.js
    • bootstrap
    • jQuery
    • ReactJs
    • JavaScript
    • Syntax Highlighters
    • tryit editor
    • PHP
  • API’s
    • Facebook
    • Google
    • Indeed
    • Twitter
    • YouTube
  • Tools