我想放大懸停的圓形元素以顯示更多的背景。展開圓盤保持背景居中?
我以爲我設法做到這一點,不過背景的過渡過程中輕微移動,這是我現在有:
.foto-icono // The container
{
height: 250px;
text-align: center;
}
.foto-icono > div // The image without padding
{
border-radius: 50%;
width: 200px;
height: 200px;
padding: 0;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
}
.foto-icono > div:hover // More padding and a negative margin so it stays on the same position
{
padding: 20px;
margin-top: -20px;
}
我也試着改變懸停該項目的高度和寬度(而不是填充),但我隨機從背景中得到一個奇怪的「顫抖」。
我該怎麼做?
用Firefox,它工作得很好 - 鉻雖然搗毀。 – drahnr
儘管如此,如果您將小提琴的大小調整爲足以強制垂直滾動條,它的工作原理應該如何。 – George
對我來說,它在Chrome中運行正常(沒有滾動條)。 – j08691