Codementor Events

AngularJS Tutorial Series: Part 2 – Flipping Tiles with CSS3 Animations and AngularJS

Published Nov 26, 2014Last updated Aug 14, 2017

This intermediate AngularJS mini tutorial is part 2 of a 5 part series with each teaching you how to build something you can use on your web page. This tutorial will teach you how to make animated flip tiles using AngularJS and CSS3.

Other Posts in the Series:


Today, I’m going to explain how to create a flipping tile using CSS3 animations and AngularJS.

If you’ve never used Angular JS, you’re missing out. You can check it out here. I’m going to be using LESS CSS for some of the more advanced CSS because it allows us to completely ignore vendor prefixes through the use of LESS mixins. If you’ve never used LESS CSS either, I suggest you read up on it here. It’s definitely worth picking up a CSS language, even if it’s not LESS.

Angular JS is great. It allows the user to almost completely remove the need for DOM manipulation inside controllers, and while some DOM manipulation is somewhat necessary, that code can be encapsulated inside directives and in many cases, can be eliminated all together. The less DOM access, the better, as it allows for easy unit testing. The flip tile we’re going to be creating today uses no DOM manipulation at all, so mission accomplished. If you’re the kind of reader who just needs to see it in action from start to finish, I’ve built a demo that shows the flip tiles in action. You can check it out here. If, on the other hand, you want to see exactly how I put this whole thing together, and how it all works, read on!

I’m going to break down the write up into a couple of different sections. First, the HTML. It’s pretty straightforward, but I’ll go over each of the Angular JS directives that I’m using, and what they all do. Then, we’ll walk through the JavaScript code, which shows how I’m using Angular JS to add and remove the appropriate CSS classes to perform the animation. Finally, I’ll describe what I’m doing with each off the CSS rules that actually cause the flip tiles to move around.

Note: The CSS shown here might not match up with exactly what you see on the demo page because I want the demo to look at least halfway decent with some pretty styling. For the most part, though, I’m going to try to keep the CSS on the tutorial as bare as possible.

The HTML

First, the HTML. It makes use of a couple of custom directives, which I’ll go over shortly.

Example

<flipper flipped="flipped" horizontal>
  <front">
    the front!
  </front>
  <back>
    the back!
  </back>
</flipper>

<flipper flipped="flipped" vertical>
  <div class="front tile">
    the front!
  </div>
  <div class="back tile">
    the back!
  </div>
</flipper>

Flipper Template

<div class="flipper" ng-transclude ng-class="{ flipped: flipped }"></div>

Front Template

<div class="front tile"></div>

Back Template

<div class="back tile"></div>

Ok, there’s a couple of things going on here. The first is that I’m using a custom directive (“flipper”) to encapsulate the flipper. Additionally, it contains two more custom directives (“front” and “back”), within which we can put our content. I’ve unoriginally put “the front!” and “the back!” for the content, but you can put whatever you like in there, obviously including more HTML tags. We’ll set some configuration options on the directive so that the content inside the front and back tags magically appears inside the rendered HTML. I’ll go over that below.

The flipper tag has a couple of attributes. The first is “flipped”, indicating which Angular JS variable should be passed into the inner flipper scope. Angular JS will watch changes to variables passed in this manner, so all we have to do is wire up our directive template to apply a CSS class where appropriate. The second is the “horizontal” or “vertical” tag, which tells the indicates which direction the tile should flip. This corresponds to different CSS classes being applied to the elements when the “flipped” variable changes.

The flipper directive is also straightforward, making use of a couple of Angular-built directives, namely ng-transclude and ng-class. The ng-classdirective indicates that if the “flipped” variable is truthy, the flipped class should be added to the div, and removed if not. The ng-transclude directive signifies that the inner contents of this tag should be the child contents of the tag as written on the parent. This includes the front and back custom directives, which are two separate custom directives. The “front” tag contains content that should go on the front of the tile, while the “back” tag unsurprisingly contains content that will show up once the tile has flipped. You can put whatever you want in here, be it HTML or text. In the example, I’ve got some indicator text in there. Note: While you can put almost any styled HTML in these tiles, make sure that you’re not doing any absolute positioning with nested elements. The front and back sides of the tile are absolutely positioned, so adding more of that will complicate matters.

JavaScript

Here’s where all the Angular JS magic happens. I’ll paste the whole thing in here, which includes the app initialization as well as the custom directive code.

var app = angular.module("demo", []);

app.controller("flipperDemo", function($scope) {
  $scope.flipped = false;

  $scope.flip = function() {
    $scope.flipped = !$scope.flipped;
  };
});

app.directive("flipper", function() {
  return {
    restrict: "E",
    template: "<div class='flipper' ng-transclude ng-class='{ flipped: flipped }'></div>",
    transclude: true,
    scope: {
      flipped: "="
    }
  };
});

app.directive("front", function() {
  return {
    restrict: "E",
    template: "<div class='front tile' ng-transclude></div>",
    transclude: true
  };
});

app.directive("back", function() {
  return {
    restrict: "E",
    template: "<div class='back tile' ng-transclude></div>",
    transclude: true
  }
});

I’m going to assume that the reader is at least somewhat familiar with how to set up an Angular JS app, but the code is up there anyway. You’ll also need to specify ng-app="demo" on your HTML tag (see the example page source to see this in action). The controller I’ve set up contains just a single scope variable: flipped. This is the variable the flipper directive needs access to to determine its inner state, specifically whether to display the front or the back tile. It also sets a method on the controller scope, flip, which toggles the flipped variable. It’s initially set to false, indicating that the tile should show the front by default.

Then, we’ve got the three directive statements. The flipper directive is the most complicated, but it’s straightforward nonetheless. First, I’m restricting this directive to an element. Angular JS directives can appear in a number of different forms, including an element (HTML tag), an attribute and a class name. In this case, the element makes the most sense, so we indicate that with an “E“. Next, we specify the template for the flipper. Because the flipper’s template is just a single line, I’ve opted to put this inline in the directive definition, but for more complicated directives, it’s best practice to move this to a separate file. You’ll have to change “template” to “templateUrl” for that to work, however. The “transclude” option indicates that we want to take the child elements (or text) and put it inside the element annotated with the “ng-transclude” attribute, which you can see in the template text. We’re creating an isolated scope with just a single variable, flipped. The equals sign indicates that this is a two way binding, meaning that we can read the value from the parent scope and also set it in the event we need to.

The front and back directives are even simpler than the flipper and contain only a single difference: the front or back CSS class. Note that they’re also using transclusion to render child elements in the built HTML.

CSS

.tile { color:white; padding:15px; box-sizing:border-box; -moz-box-sizing:border-box; }
    
flipper {
    float:left;
    width:250px;
    height:250px;
    margin-right:15px;
    display:block;
    perspective:1000;
    
    span {
        color:white;
    }
    
    >div.flipper {
        float:left;
        width:100%;
        height:100%;
        position:relative;
        transform-style:preserve-3d;
        
        .front, .back {
            float:left;
            display:block;
            width:100%;
            height:100%;
            backface-visibility:hidden;
            position:absolute;
            top:0;
            left:0;
            transform-style:preserve-3d;
            transition:transform ease 500ms;
        }

        .front {
            z-index:2;
            background:#19489E;

            /* front tile styles go here! */
        }

        .back {
            background:#9E1919;

            /* back tile styles go here! */
        }
    }
}

flipper[horizontal] {
    .front {
        transform:rotateY(0deg);
    }

    .back {
        transform:rotateY(-180deg);
    }

    div.flipper.flipped {
        .front {
            transform:rotateY(180deg);
        }

        .back {
            transform:rotateY(0deg);
        }
    }
}

flipper[vertical] {
    .front {
        transform:rotateX(0deg);
    }

    .back {
        transform:rotateX(-180deg);
    }

    div.flipper.flipped {
        .front {
            transform:rotateX(180deg);
        }

        .back {
            transform:rotateX(0deg);
        }
    }
}

I’ve left out a bunch of the vendor-specific CSS rules for brevity’s sake. The demo page has the full CSS rules to make the flipper work in all browsers, though, so if you need to see them, check it out. You’ll note that I’m referencing my custom directives in the CSS, which is no problem; the browser doesn’t care what HTML tag we’re using and will apply styles regardless.

There are a couple of fancy CSS rules that are in play here. I’ll go through them all and describe what they’re doing.

  • transform-style The transform-style rule unsurprisingly indicates a style for the transform. In this example, we’re only interested in the preserve-3d value, which indicates that any nested elements should preserve their rendering style in the third dimension. It means nothing without the transform CSS rule, which we’re also using. This is what gives the illusion of the tile flipping. Without it, the tile would appear to shrink and grow instead of flipping in 3D.
  • perspective This defines where the orientation and distance the viewer has of the 3D transformation. That sounds a little strange, but basically, it defines the number of pixels the rendered element is from the view.
  • backface-visibility This property indicates the visibility status of the reverse side of elements. This makes no sense for static elements on a page, but in our case, it’s important to hide the reverse side so we don’t see a flipped version of the tile. In our example, the text “the front!” is printed on both the front and back of the tile. If we set this property to hidden, only the front side is visible.

Conclusion

And that’s it! Thanks for reading. Once again, if you’d like to view these flip tiles in action, you can take a look at the demo page here.

Discover and read more posts from Chris Harrington
get started
post commentsBe the first to share your opinion
Michael Lage
7 years ago

Can this be done with a fluid flipper element?

eg:
flipper {
float:left;
width:30%;
}

Prabin Giri
7 years ago

Thank you fothe tutorials but how to do the same through angular 2

Indio John
8 years ago

I don’t understand what’s the purpose of flipper tag in the code.Please guide me in it.

Show more replies