Buenas Tardes a todos. El problema es el siguiente, tengo una tabla y dentro imágenes
todas las imágenes son circulares, quiero que estás imágenes que están en blanco y negro
al pasar el cursor en hover, cambien de color a celeste, hice la prueba con una de las imágenes pero tiene un par de errores que no puedo solucionar dejo el código y espero su aporte, gracias
html.
<table class="primeratabla">
<tbody>
<tr>
<td><a class="bluecircle" href="#"><img width="150px" height="150px" src="circulosdecolor/1full.png"/><div id="circulo"></div></a><img width="150px" height="150px"src="circulosdecolor/2full.png"><img width="150px" height="150px"src="circulosdecolor/3full.png"><img width="150px" height="150px"src="circulosdecolor/4full.png"><img width="150px" height="150px"src="circulosdecolor/5full.png"><img width="150px" height="150px"src="circulosdecolor/6full.png"></td>
</tr>
<tr>
<td><img width="150px" height="150px"src="circulosdecolor/7full.png"><img width="150px" height="150px"src="circulosdecolor/8full.png"><img width="150px" height="150px"src="circulosdecolor/9full.png"><img width="150px" height="150px"src="circulosdecolor/10full.png"><img width="150px" height="150px"src="circulosdecolor/11full.png"><img width="150px" height="150px"src="circulosdecolor/12full.png"></td>
</tr>
<tr>
<td><img width="150px" height="150px"src="circulosdecolor/13full.png"><img width="150px" height="150px"src="circulosdecolor/14full.png"><img width="150px" height="150px"src="circulosdecolor/15full.png"><img width="150px" height="150px"src="circulosdecolor/16full.png"><img width="150px" height="150px"src="circulosdecolor/17full.png"><img width="150px" height="150px"src="circulosdecolor/18full.png"></td>
</tr>
<tr>
<td><img width="150px" height="150px"src="circulosdecolor/19full.png"><img width="150px" height="150px"src="circulosdecolor/20full.png"><img width="150px" height="150px"src="circulosdecolor/21full.png"><img width="150px" height="150px"src="circulosdecolor/22full.png"><img width="150px" height="150px"src="circulosdecolor/23full.png"><img width="150px" height="150px" src="circulosdecolor/24full.png"></td>
</tr>
<tr>
<td><img width="150px" height="150px"src="circulosdecolor/25full.png"><img width="150px" height="150px"src="circulosdecolor/26full.png"><img width="150px" height="150px"src="circulosdecolor/27full.png"><img width="150px" height="150px"src="circulosdecolor/28full.png"><img width="150px" height="150px"src="circulosdecolor/29full.png"><img width="150px" height="150px"src="circulosdecolor/30full.png"></td>
</tr>
<tr>
<td><img width="150px" height="150px"src="circulosdecolor/31full.png"><img width="150px" height="150px"src="circulosdecolor/32full.png"><img width="150px" height="150px"src="circulosdecolor/33full.png"><img width="150px" height="150px"src="circulosdecolor/34full.png"><img width="150px" height="150px"src="circulosdecolor/35full.png"><img width="150px" height="150px"src="circulosdecolor/36full.png"></td>
</tr>
<tr>
<td><img width="150px" height="150px"src="circulosdecolor/37full.png"><img width="150px" height="150px"src="circulosdecolor/38full.png"><img width="150px" height="150px"src="circulosdecolor/39full.png"><img width="150px" height="150px"src="circulosdecolor/40full.png">
</td>
</tr>
</tbody>
</table>
CSS.
.primeratabla {position: relative;
margin-left: 100px;
margin-top: 60px;
width: 1200px;}
a.bluecircle {display: inline;}
#circulo {
display: none;
background: rgb(0, 184, 184);
width: 150px;
height: 150px;
-moz-border-radius: 75px;
-webkit-border-radius: 75px;
border-radius: 75px;
-webkit-filter: opacity(90%);
position: relative;
top: -209px;
left: 20px;
overflow: hidden;
}
a.bluecircle:hover #circulo {display: block;
opacity: 0.7; }
img {padding: 20px 20px 60px;}