css - duplicate social icon on easy way with reverse color -


im making responsive website , top have navigation social icons , want hover each icons color. during editing in photoshop dont know technique put color easy way. problem icon small when comes putting color takes time.i have 5 icons on website there : google , facebook, twitter , pinterest , rss .

see image

you need change icon using css :hover selector.

try this:

html

<a class="icon" href="#"></a> 

css

a{   background-image: 'image.png'   width: 32px; }  a:hover {  background-image: 'hover-image.png' } 

Comments

Popular posts from this blog

c++ - QTextObjectInterface with Qml TextEdit (QQuickTextEdit) -

javascript - angular ng-required radio button not toggling required off in firefox 33, OK in chrome -

xcode - Swift Playground - Files are not readable -