Est-il possible de changer l'attribut img src en utilisant css?

Je suis en train de changer img src (pas le fond img src) avec css

<img id="btnUp" src="img/btnUp.png" alt="btnUp"/>  

#btnUp{
    cursor:pointer;
}
#btnUp:hover{
    src:img/btnUpHover; /* is this possible ? It would be so elegant way.*/
}

source d'informationauteur bonaca