ionic 自定义弹框效果

前端之家收集整理的这篇文章主要介绍了ionic 自定义弹框效果前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在工作过程中往往需要自定义的弹框。因此,将内容整理如下,以方便学习。若有不当之处,敬请斧正!

思路

  • 利用ionic自带的弹框$ionicPopup。
  • 隐藏头部和尾部,只保留body部分
  • 在利用templateUrl或者template,引入需要的模板

代码

" + "
{{tempItem.name}}
" + "
" + "
input1:
" + "
" + "
" + "
" + "
input2:
" + "
" + "
" + "
" + "" + "" + "
" + "
",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%; }

效果

自定义图片

以上所述是小编给大家介绍的ionic 自定义弹框效果。编程之家 jb51.cc 收集整理的教程希望能对你有所帮助,如果觉得编程之家不错,可分享给好友!感谢支持

原文链接:https://www.f2er.com/js/38305.html

猜你在找的JavaScript相关文章