CSS3 animation

HTML

<a href="#" id="anim2">123-456-7890</a>

CSS

#anim2{
display:block;
font-size:45px;
padding:1em;
margin:1em 0;
background:;
color:black;
text-align:center;
text-decoration:none;
-webkit-box-sizing:border-box;
-webkit-animation-fill-mode:both;
}




@-webkit-keyframes demo {
    0%{
        background:#c46;
        width:100%;
        -webkit-transform:rotate(0);
    }
    100%{
        background:#66f;
        width:50%;
        -webkit-transform:rotate(360deg);
    }
}

JavaScript

$("#anim").bind('webkitTransitionEnd', function(){
$(this).append($('<span>Hoge!</span>'))
});