人生与戏

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

1.HTML代码:

<div class="circleOne"></div>
<br/>
<div class="circleTwo"></div>

2.CSS代码:

.circleOne{
  /* 让其居中 */
  margin:0 auto;
  width:150px;
  height:150px;
  border:1px solid blue;
  border-radius:50%;
}
.circleTwo{
  /* 让其居中 */
  margin:0 auto;
  /* 改变其x轴的长 */
  width:50px;
  /* 改变其y轴的长 */
  height:200px;
  border:1px solid blue;
  border-radius:50%;
}

3.效果图:

4.2D旋转地址:http://www.w3school.com.cn/css3/css3_2dtransform.asp

.circleTwo{
   /* 让其旋转 */
  transform: rotate(30deg);
  /* 让其居中 */
  margin:0 auto;
  /* 改变其x轴的长 */
  width:50px;
  /* 改变其y轴的长 */
  height:200px;
  border:1px solid blue;
  border-radius:50%;
}

posted on 2018-11-06 09:46  人生与戏  阅读(316)  评论(0编辑  收藏  举报