How css3 Animation is compatible with ie9

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title></title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }
        /*loading*/
        .load-bg{
            background: -sharp2b2b2b;
            opacity: .5;
            position: absolute;
            width: 100%;
            height: 100%;
            /*display: none;*/
            top: 0px;
            z-index: 1;
        }
        .load-bg span{
            color: -sharpfff;
            font-size: 20px;
            display: block;
            margin-top: 15px;
        }
        .load-bg span.load-EN {
            font-size: 14px;
        }
        .load-bg .load-outer {
            position: absolute;
            top: 44%;
            left: 50%;
            margin-left: -25px;
        }
        .load-bg .load-outer h4 {
            margin-left: -35px;
            margin-top: 30px;
            text-align: center;
        }
        .spinner {
            width: 60px;
            height: 60px;
            text-align: center;
            font-size: 10px;
        }

        .spinner > div {
            background-color: -sharp67CF22;
            height: 100%;
            width: 6px;
            display: inline-block;
            margin-right: 3px;
            vertical-align: middle;
            -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
            animation: stretchdelay 1.2s infinite ease-in-out;
        }

        .spinner .rect2 {
            -webkit-animation-delay: -1.1s;
            animation-delay: -1.1s;
        }

        .spinner .rect3 {
            -webkit-animation-delay: -1.0s;
            animation-delay: -1.0s;
        }

        .spinner .rect4 {
            -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s;
        }

        .spinner .rect5 {
            -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s;
        }

        @-webkit-keyframes stretchdelay {
            0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
            20% { -webkit-transform: scaleY(1.0) }
        }

        @keyframes stretchdelay {
            0%, 40%, 100% {
                transform: scaleY(0.4);
                -webkit-transform: scaleY(0.4);
            }  20% {
                   transform: scaleY(1.0);
                   -webkit-transform: scaleY(1.0);
               }
        }

    </style>
</head>
<body>
<div class="load-bg">
    <div class="load-outer">
        <div class="spinner">
            <div class="rect1"></div>
            <div class="rect2"></div>
            <div class="rect3"></div>
            <div class="rect4"></div>
            <div class="rect5"></div>
        </div>
        <h4>
            <span class="load-CN"> ...</span>
            <span class="load-EN">Loading ...</span>
        </h4>
    </div>
</div>

</body>
</html>

IE9 does not support animation. Other parts of css3 can also be compatible with-ms-transform:scale.

Menu