前端之家收集整理的这篇文章主要介绍了
ionic 自定义弹框效果,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在工作过程中往往需要自定义的弹框。因此,将内容整理如下,以方便学习。若有不当之处,敬请斧正!
思路
- 利用ionic自带的弹框$ionicPopup。
- 隐藏头部和尾部,只保留body部分
- 在利用templateUrl或者template,引入需要的模板
代码
" +
"
{{tempItem.name}}
" +
"
" +
"
" +
"
" +
"" +
"" +
"
" +
"
",scope: $scope
});
自定义表单*/
.popup-form{
font-size:15px
}
.form-title{
margin: 10px;
text-align:center
}
.form-content{
width: 90%;
height: 36px;
background-color: white;
padding-left: 10px;
margin:10px auto;
position: relative;
border-radius: 5px;
}
.form-content input{
line-height: 36px;
padding-left:10px
}
.input-name{
float: left;
line-height: 36px;
}
.input-area{
width: 50%;
float: left;
height: 36px;
}
.form-button{
width: 90%;
height: 36px;
margin:10px auto;
position: relative;
}
.form-button button{
width: 50%;
border-radius: 5px;
min-height: 10px;
height: 100%;
line-height: 100%;
}