java中的接口是类吗
272
2023-07-08
ionic组件ion
介绍
ion-tabs是ionic中的选项卡组件,路由使用的是angular-ui-router.js。因此必须先掌握uiRoute。http://
效果图
实例代码
index.html
tab-index.html
config.js
.state("tabs", {
url: "/tabs",
templateUrl : "templates/tab/tab-index.html",
controller : "tabs"
})
.state("tabs.home", {
url: "/home",
views : {
"tab-home" : {
templateUrl : "templates/home/home.html"
}
}
})
.state("tabs.taobao", {
url: "/taobao",
views : {
"tab-taobao" : {
templateUrl : "templates/taobao/taobao.html"
}
}
})
.state("tabs.user", {
url: "/user",
views : {
"tab-user" : {
templateUrl : "templates/user/user.html"
}
http://}
})
接着就可以分别在home.html taobao.html user.html 下编写各个选项卡的内容
例如:
home.html
注意:不要将ion-tabs置入一个ion-content元素内;它会造成一定的已知css错误。
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~