﻿body {
}

.shrink-add, .grow-add {
    -webkit-transition:all ease 2.5s;
    -moz-transition:all ease 2.5s;
    -o-transition:all ease 2.5s;
    transition:all ease 2.5s;
}

.shrink,
.shrink-add.shrink-add-active {
    width:100px;
}


.start-class,
.grow,
.grow-add.grow-add-active {
    width:400px;
}

.cssanimationTimes {
    transition-property: width, background-color;
    transition-duration: 2s, 10s;
    width: 100px;
}


.large {
    width:300px;
}

.red {
    background-color: red;
}

.cssanimation {
    width:200px;
    border: 1px solid black;
    transition-property:width;
    transition-duration: 2s;
}

.cssanimation:hover {
    width:400px;
}

cssAnimationTimesOneLine {
    width:100px;
    background-color:white;
    transition:width 2s, background-color 10s;
}

.cssAnimationTimesOneLine:hover {
    width:200px;
    background-color:red;
    transition: background-color 10s;
}

.cssanimationEasing {
    width:200px;
    background-color:black;
    transition-property:all;
    transition-timing-function:ease;
    transition-duration:2s;
}

.cssanimationEasing:hover {
        background-color:red;
}

.firstSampleAnimation.ng-hide-add,
.firstSampleAnimation.ng-hide-add-active,
.firstSampleAnimation.ng-hide-remove {
    -webkit-transition: 10s ease;
    transition: 5s ease;
    opacity: 1;
}

.firstSampleAnimation.ng-hide {
    opacity: 0;
}

.animationIf.ng-enter,
.animationIf.ng-leave {
    -webkit-transition: opacity ease-in-out 1s;
    transition: opacity ease-in-out 1s;
}

.animationIf.ng-enter,
.animationIf.ng-leave.ng-leave-active {
    opacity: 0;
}

.animationIf.ng-leave,
.animationIf.ng-enter.ng-enter-active {
    opacity: 1;
}

.repeatItem.ng-enter {
    -webkit-animation:2s ng-enter-repeat-animation;
    animation:2s ng-enter-repeat-animation;
}

@-webkit-keyframes ng-enter-repeat-animation {
    from {
        opacity:0;
        color:red;
    }
    to {
        opacity:1;
        color:black;
    }
}

@keyframes ng-enter-repeat-animation {
    from {
        opacity:0;
        color:red;
    }
    to {
        opacity:1;
        color:black;
    }
}

.repeatItem.ng-move {
    -webkit-animation: 1s ng-move-repeat-animation;
    animation: 1s ng-move-repeat-animation;
}

@-webkit-keyframes ng-move-repeat-animation {
    from {
        opacity:1;
        color:black;
    }
    to {
        opacity: 0.5;
        color:blue;
    }
}

@keyframes ng-move-repeat-animation {
    from {
        opacity:1;
        color:blue;
    }
    to {
        opacity:0.5;
        color:blue;
    }
}

.repeatItem.ng-leave {
    -webkit-animation: 1s ng-leave-repeat-animation;
    animation: 1s ng-leave-repeat-animation;
}

@-webkit-keyframes ng-leave-repeat-animation {
    from {
        opacity:1;
        color:black;
    }
    to {
        opacity:0;
        color:red;
    }
}

@keyframes ng-leave-repeat-animation {
    from {
        opacity:1;
        color:black;
    }
    to {
        opacity:0;
        color:red;
    }
}


.ngHideSample {
    padding:10px;
}

.ngHideSample.ng-hide-add {
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
   




}