用css根据屏幕尺寸制作圆形图像

时间:2016-08-23 06:32:39

标签: css ionic-framework circleimage

我试图让我的图像变成圆形。尽管这个图像有不同的宽度和高度,我希望它是圆形,看起来它们具有相同的宽度和高度长度。 例如;我的形象尺寸: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;
} 

3 个答案:

答案 0 :(得分:5)

使用大众单位。它们取决于视口宽度。所以,它可以像宽度:2vw;高度: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>

答案 1 :(得分:1)

对于&gt; ionic2

<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 side menu with centered image and text

请知道这是否对你有用。

答案 2 :(得分: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/