1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
| <script type="text/javascript">
$(function(){
$("#foo").css({
WebkitBorderTopLeftRadius: '3px',
WebkitBorderTopRightRadius: '3px',
WebkitBorderBottomLeftRadius: '3px',
WebkitBorderBottomRightRadius: '3px',
MozBorderRadius: '3px',
BorderRadius: '3px' })
.animate({
WebkitBorderTopLeftRadius: '100px',
WebkitBorderTopRightRadius: '100px',
WebkitBorderBottomLeftRadius: '100px',
WebkitBorderBottomRightRadius: '100px',
MozBorderRadius: '200px',
BorderRadius: '200px',
height:'200px',
width:'200px'}, 2000);
})
</script>
<style type="text/css">
#foo {height:1px;
width:1px;
border :solid 3px red;
MozBorderRadius: '3px',
text-align:center;
margin:auto;
background-color:green;
color:#ffffff;
margin-top:10%;
overflow:hidden;
}
p {text-align:center;
margin-top:40%;}
</style>
</head>
<body>
<div id="foo"><p>coucou</p></div>
</body>
</html> |
Partager