我有这个 div,它正在从互联网上加载完美的图像 url,但不是我的本地图像,非常奇怪:
<div class="col biggest-grid dir-medico-grid" ng-click="showDirMedico()">
<img src="../img/dirmedico.png" class="img"/>
<p>DIRECTORIO MÉDICO</p>
</div>
所以当我尝试这个时它没有问题:
.dir-medico-grid{
background: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/652/confectionary.png);
}
但如果我试试这个:
.dir-medico-grid{
background: url(../www/img/doctors.jpg);
}
现在它不起作用,因为您可以确保我的路径是正确的,我将从 ionic.app.scss 转到 Doctors.jpg:
我尝试过 with background: url(../www/img/doctors.jpg) no-repeat center center fixed;
, with'../www/img/doctors.jpg'
和"../www/img/doctors.jpg"
withbackground-image
而不是,background
但似乎没有任何效果,这很奇怪。