如何在ionicframework中显示图像标题?

时间:2015-06-09 05:16:15

标签: html css responsive-design ionic-framework



<ion-view title="Categories">
                <ion-content ng-init="loadImages()">
                    <div id="catlist">
                        <div class="row" ng-repeat="image in images" ng-if="$index % 2 === 0">
                            <div class="col" ng-if="$index < images.length">
                                <a data-id="{{cats[$index].CategoryID}}" >
                                    <span id="Content" class="col col-25 ">{{cats[$index].CategoryName}}</span>
                                    <img ng-src="{{images[$index].src}}" width="100%" />
                                </a>
                            </div>
                            
                            <div class="col" ng-if="$index + 1 < images.length">
                                <a data-id="{{cats[$index+1].CategoryID}}" >
                                    <span id="Content" class="col col-25 ">{{cats[$index+1].CategoryName}}</span>
                                    <img ng-src="{{images[$index + 1].src}}" width="100%" />
                                </a>
                            </div>
                        </div>
                    </div>
                </ion-content>
            </ion-view>
&#13;
&#13;
&#13;

&#13;
&#13;
#Content {
  background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
  color: #f4f2f3;
  height: auto;
  position: absolute;
  text-align: center;
  width: 310px;
  text-decoration: none !important;
  background-opacity: 0.1;
  font-family: arial;
  font-size: 15px;
  font-weight: bold;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}
&#13;
&#13;
&#13;

我创建了2 * 2图像网格,并在图像顶部显示图像标题。但图像标题宽度不适合图像宽度。我正在使用离子框架。如何调整图像标题宽度取决于图像宽度?enter image description here

1 个答案:

答案 0 :(得分:0)

从你的css中检查#Content(这应该改为class而不是id,因为它假设每页只有一个id的一个元素。但我不认为这就是为什么会出现问题)

在#Content风格中,您可以尝试从

更改
width: 310px;

width: 100%;

如果这不起作用,请尝试添加

display: block;

希望这有帮助,对不起我的英语:)