3

我正在尝试使我的图像成为圆形。尽管此图像具有不同的宽度和高度,但我希望它是圆形,看起来它们具有相同的宽度和高度长度。例如; 我的图像尺寸:250X300。但我希望它是 200X200 圆。实际上我可以很容易地做到这一点。问题是根据屏幕尺寸进行此操作。当我将手机转为水平时,它必须根据屏幕尺寸进行更改。

我的CSS代码如下

.image {
     height: 100px; 
     width: 100px; 
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px gray;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
} 
4

3 回答 3

5

使用大众单位。它们取决于视口宽度。所以,它可以像 width: 2vw;height:2vw; 圆圈宽度将取决于设备宽度。

.image {
     height: 5vw; 
     width: 5vw; 
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px gray;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
} 
<div class="image"></div>

于 2016-08-23T11:03:54.417 回答
1

>离子2

<ion-card text-center class="hide-card">
    <img src="http://placehold.it/300x200" class="custom-avatar"/>
    <h2>Victorcodex</h2>
    <p>Have some p tag here</p>
    <p>I am the third guy inline here</p>
    <hr>
</ion-card>

.hide-card {
  -webkit-box-shadow: none!important;
}

.custom-avatar {
  height: 30vw;
  width: 30vw;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

具有居中图像和文本的 ionic2 侧边菜单

请让我知道这对您是否有用。

于 2017-07-28T15:08:44.110 回答
0

兄弟使用 background-size: 100% 100%; 你的风格会像

 div { 
        background-size: 100% 100%;
        background-repeat: no-repeat;
        border-radius: 50%;
        width: 200px;
        height: 200px;
    }

演示链接:http: //jsfiddle.net/vNh8t/314/

于 2016-08-23T06:39:18.340 回答