Return color on hover

Posted by alonblack on Stack Overflow See other posts from Stack Overflow or by alonblack
Published on 2013-11-10T15:37:57Z Indexed on 2013/11/10 15:53 UTC
Read the original article Hit count: 130

Filed under:
|
|
|

Here i created 3 images that goes from color to grayscale and i want to show the color on hover what i'v done wrong?

here is the fiddle link:

http://jsfiddle.net/4tHWg/6/

css code:

 .box {
       float: left;
       position: relative;
       width: 14.285714286%;



    }

    .boxInner img {
       width: 100%;
       display: block;

    }

    .boxInner img:hover {
      -webkit-filter: grayscale(0%);
    }

@-webkit-keyframes toGrayScale {
    to {
        -webkit-filter: grayscale(100%);
    }
}

.box:nth-child(1) img {
    -webkit-animation: toGrayScale 1s 0.5s forwards;
}

.box:nth-child(2) img {
    -webkit-animation: toGrayScale 2s 1s forwards;
}

.box:nth-child(3) img {
    -webkit-animation: toGrayScale 3s 1.5s forwards;
}

© Stack Overflow or respective owner

Related posts about html

Related posts about css