我在home.scss圖像按鈕在模擬器和PhoneGap的不工作 - 離子2
.img_button{
color: #fff;
width: 200px;
height: 70px;
background: none;
box-shadow: 0px 0px 0px 0px;
background-image: url("/build/images/lotus_button.png");
background-repeat: no-repeat;
background-size: 100%;
background-size: 200px auto;
padding: 0 0 0 3em;
background-color: transparent !important;
}
在home.html的
<ion-content class="home" padding>
<button class="img_button">Image Custom Button</button>
</ion-content>
它在瀏覽器工作正常這個類,但不在ionic emulate ios
或phonegap serve
。
然而,在home.scss的.img_button更改背景圖片的URL是這樣的:background-image: url("http://www.clker.com/cliparts/d/X/i/j/F/U/expences-button-png-hi.png");
它的工作在所有ionic emulate ios
,phonegap serve
,並在瀏覽器中。
我不知道如何在scss中使用我的本地路徑作爲background-image。
請幫忙。謝謝。