我正在尝试使用边界半径转换一些 div。我几乎得到它,但有时 div 看起来像 'eggs' 哈哈 这是我的 css:
#div{ /*div central*/
position:absolute;
top:50%;
margin-top: -20%;
left:50%;
margin-left: -20%;
background: #00A8D9;
width: 40%;
height: 40%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
border:3px solid #000;
}
#divSupIzq,#divSupDer,#divInfIzq,#divInfDer{ /*DIVs: left-top , right-top, left-bottom, right-bottom*/
background: #ddd;
width: 20%;
height: 20%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
border-radius: 50%;
border:3px solid #fff;
position:absolute;
}
#divSupIzq{ /*Div left-top*/
top:15%;
left:10%;
}
#divSupDer{ /*Div right-top*/
top:15%;
right:10%;
}
#divInfIzq{ /*Div left-bottom*/
bottom:15%;
left:10%;
}
#divInfDer{ /*Div right-bottom*/
bottom:15%;
right:10%;
}
在 html 中,我使用 javascript / jQuery 来更改每个 div 的内容(基本上是 div 中的文本:left-top、right-top、left-bottom、right-bottom ;和中央 div 中的数字)取决于每个 div 的大小:
$('#div').resize(function(height){
var fuente = $(this).height()/2;
var margen = (fuente / 2)-5;
$('.contenido').css('font-size',fuente+'px');
$('.contenido').css('margin-top',margen+'px');
});
这就是我在 chrome 的波纹扩展中看到的方式: https ://www.dropbox.com/s/k71kz5lahfolw95/screen.JPG
你能帮我为了div总是圆圈,而不是鸡蛋吗? 在此先感谢,丹尼尔