如何创建不同大小的圆形图像

时间:2016-03-26 14:21:32

标签: html css

尝试使用css / scss复制此效果,到目前为止尝试使用scss通过对子对象应用不同的宽度,但似乎没有任何工作

.box-container{
    display: flex;
    flex-wrap:wrap;
}   
.box-container .box1{
    width: 30%;
}

enter image description here

1 个答案:

答案 0 :(得分:1)

制作圆角图片的三种方法

1 - 包含border-radius: 50%;

的图片

2 - 包含border-radius: 50%;且图像为背景的容器

3 - 包含border-radius: 50%;且内部图片

的容器

要添加文字,只需在div中使用带有文字的选项#2或#3。



body {
  background: honeydew;  
}

#stripe {
  position: absolute;
  bottom: 38%;
  width: 100%;
  color: #fff;
  text-align: center;
  cursor: default;
}

#pic {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 4px solid skyblue;
  box-sizing: border-box;
  vertical-align: top;
}

#imgcontainer {
  width: 160px;
  height: 160px;
  position: relative;
  vertical-align: bottom;
  background-image: url(http://i.imgur.com/YwbFAEg.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: inline-block;
  border-radius: 50%;
  border: 4px solid orange;
  box-sizing: border-box;
}

#container {
  width: 160px;
  height: 160px;
  position: relative;
  vertical-align: bottom;
  display: inline-block;
  border-radius: 50%;
  border: 4px solid crimson;
  box-sizing: border-box;
  overflow: hidden;
}

#pic2 {
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  height:100%;
  width:100%;
}

<img id=pic src="http://i.imgur.com/YwbFAEg.jpg">

<div id=imgcontainer><p id=stripe>text</p></div>

<div id=container><img id=pic2 src="http://i.imgur.com/YwbFAEg.jpg"><p id=stripe>text</p></div>
&#13;
&#13;
&#13;

我没有成功使用display:flexfloat:left将圈子分布在零空间的容器上,所以我确实在{{1}内使用position:absolute逐个放置它们容器(不是一个方便的解决方案,有一些限制,但它确实在某些情况下有效)。

ps:注意我使用position:relative代替padding-bottom来保持圈子的事实。宽高比。

&#13;
&#13;
height
&#13;
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background: honeydew;
}

#container {
  width: 100%;
  height: 100%;
  min-height: 346px;
  position: relative;
}

.imgcontainer {
  background-image: url(http://i.imgur.com/YwbFAEg.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 50%;
  position: absolute;
  border: 4px solid orange;
  box-sizing: border-box;
}

#a {
  top: 0;
  left: 0;
  width: 30%;
  padding-bottom: 30%;
}

#b {
  top: 0;
  left: 29%;
  width: 16%;
  padding-bottom: 16%;  
}

#c {
  top: 0;
  left: 44.5%;
  width: 23%;
  padding-bottom: 23%;
}

#d {
  top: 0;
  left: 67%;
  width: 33%;
  padding-bottom: 33%;
}

#e {
  top: 54%;
  left: 0%;
  width: 24%;
  padding-bottom: 24%;
}

#f {
  top: 32.5%;
  left: 23%;
  width: 33%;
  padding-bottom: 33%;
}

#g {
  top: 39.5%;
  left: 55.5%;
  width: 15.5%;
  padding-bottom: 15.5%;  
}

#h {
  top: 57.9%;
  left: 65.4%;
  width: 23%;
  padding-bottom: 23%;  
}
&#13;
&#13;
&#13;