改變字體大小推薦使用 rem
.fubiaoti {
font-size:0.5rem;
}
rem
是相對(duì)于html
根字體的度量衡單位,只有新的瀏覽器支持,推薦使用.
單行顯示文本內(nèi)容
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
設(shè)定全局的表現(xiàn)方式為ios
需要在 app.module.ts
文件中的 imports 欄目添加
原文 http://ionicframework.com/docs/api/config/Config/
IonicModule.forRoot(ConferenceApp,
{
mode:'ios'
}
,{})
在使用本地 json 數(shù)據(jù)的時(shí)候,key 一律使用雙引號(hào),列表最后一個(gè)不要加逗號(hào)(巨坑!)
"series": [
{
"name":"學(xué)程數(shù)",
"type":"line",
"xAxisIndex": 1,
"data":[1,2,4,5, 8, 9.0, 8,6,5,9]
},
{
"name":"總題數(shù)",
"type":"bar",
"data":[20,10,20, 49, 70, 180,70,88,93,72]
},
{
"name":"錯(cuò)題數(shù)",
"type":"bar",
"data":[5, 9, 9,8,24,9,11,32,13,21]
}
]