ionic2 爬坑小指南

改变字体大小推荐使用 rem

.fubiaoti {
  font-size:0.5rem;
}

rem 是相对于html 根字体的度量衡单位,只有新的浏览器支持,推荐使用.

单行显示文本内容

overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;

设定全局的表现方式为ios

需要在 app.module.ts 文件中的 imports 栏目添加
原文 http://ionicframework.com/docs/api/config/Config/

IonicModule.forRoot(ConferenceApp,
{
mode:'ios'  
}
,{})

在使用本地 json 数据的时候,key 一律使用双引号,列表最后一个不要加逗号(巨坑!)

"series": [
                    {
                        "name":"学程数",
                        "type":"line",
                        "xAxisIndex": 1,
                        "data":[1,2,4,5, 8, 9.0, 8,6,5,9]
                    },
                    {
                        "name":"总题数",
                        "type":"bar",
                        "data":[20,10,20, 49, 70, 180,70,88,93,72]
                    },
                    {
                        "name":"错题数",
                        "type":"bar",
                        "data":[5, 9, 9,8,24,9,11,32,13,21]
                    }
                ]


你可能感兴趣的:(ionic2 爬坑小指南)