@-webkit-keyframes blindX {
    100% { width: 100%; }
}

@keyframes blindX {
    100% { width: 100%; }
}

@-webkit-keyframes blindY {
    100% { height: 100%; }
}

@keyframes blindY {
    100% { height: 100%; }
}

.blindLeft {

    width: 0;
    -webkit-animation: blindX 0.5s forwards;
    -webkit-animation-delay: 2s;
    animation: slide 0.5s forwards;
    animation-delay: 2s;
}

.blindRight {

    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 2s;
    animation: slide 0.5s forwards;
    animation-delay: 2s;
}