Main tutorial black and white images more Tutorial 2my4edge.com

Hover the both images

Color to Black and white




.c-b:hover { 
            filter: grayscale(100%);
            -webkit-filter: grayscale(100%);
            -moz-filter: grayscale(100%);
            -ms-filter: grayscale(100%);
            -o-filter: grayscale(100%); 
             }

Black and white to color




.b-c { 
            filter: grayscale(100%);
            -webkit-filter: grayscale(100%);
            -moz-filter: grayscale(100%);
            -ms-filter: grayscale(100%);
            -o-filter: grayscale(100%); 
         }


.b-c:hover { 
             filter: grayscale(0%);
             -webkit-filter: grayscale(0%);
             -moz-filter: grayscale(0%);
             -ms-filter: grayscale(0%);
             -o-filter: grayscale(0%); 
          }