Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9168145
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T15:33:45+00:00 2026-06-17T15:33:45+00:00

I’m currently working on a HTML5 mobile platform and I have a landing page

  • 0

I’m currently working on a HTML5 mobile platform and I have a landing page for my application which is tiled and is laid out as four equally sized tiles (divs) on the screen

I’ve been messing around with CSS3 animation all afternoon and I’ve found something which I think can be of use if I can figure out the logistics around using it (http://daneden.me/animate/).

What I’m trying to achieve is having the landing page tiles run the “bounce in” animation as the user logs in and is redirected to the landing page, to give the effect of the tiles loading in with the user.

Secondly, when a user clicks on a particular tile, I want that tile to run “bounce out” and then do a redirect to the page the user specified.

It’s worth mentioning I’m currently using JQuery mobile for some other functionality but I can’t quite get this to work and I’m not sure if there is a smoother, more lightweight method of achieving this as I’m currently experimenting with the CSS animation delay property to no aveil.

Any advice or suggestions are much appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T15:33:46+00:00Added an answer on June 17, 2026 at 3:33 pm

    Do you mean something like this?

    demo

    It’s not all CSS, it uses JavaScript to delay the default click action (update: uses JavaScript for redirect, as it now uses div elements, not links). However, the animations are handled by the CSS.

    HTML should be something like:

    <div data-redirect='page1.html' class='tile'></div>
    <div data-redirect='page2.html' class='tile'></div>
    <div data-redirect='page3.html' class='tile'></div>
    <div data-redirect='page4.html' class='tile'></div>
    

    Relevant CSS:

    .tile {
        display: inline-block;
        opacity: 0;
        transform: scale(.3);
        background: lightblue;
        animation: bouncein 1s .5s cubic-bezier(0, 2.5, 1, -.25) forwards; 
    }
    @keyframes bouncein { 
        from { opacity: 0; transform: scale(.3); }
        to { opacity: 1; transform: scale(1); }
    }
    .bounceout {
        animation: bounceout 1s cubic-bezier(0, 2.5, 1, -.25) forwards;
    }
    @keyframes bounceout {
        from { opacity: 1; transform: scale(1); } 
        to { opacity: 0; transform: scale(.1); }
    }
    

    All the JavaScript I’ve used:

    document.body.addEventListener('click', function(e){
        var target = e.target;
        if(target.classList.contains('tile')) {
            target.classList.add('bounceout');
            setTimeout(function() {
                if(target.dataset) window.location = target.dataset.redirect;
                else window.location = target.getAttribute('data-redirect');
                }, 1000);
        }
    }, false);
    

    If you want to know more about CSS3 animations vs. jQuery animations then this article could help.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want use html5's new tag to play a wav file (currently only supported
I have an autohotkey script which looks up a word in a bilingual dictionary
I have an array which has BIG numbers and small numbers in it. I
I have a text area in my form which accepts all possible characters from
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and
I am trying to understand how to use SyndicationItem to display feed which is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.