IONIC自定义subheader的最佳解决方案

网络编程 2021-07-04 20:00www.168986.cn编程入门
本文重点给大家介绍IONIC自定义subheader的最佳解决方案,本文实例讲解,介绍的非常详细,感兴趣的朋友一起看看吧

IONIC subheader是我们常用的一个css 属性,这个subheader的高度是固定的,也是可以改变的,如果改了subheader的告诉,还要更改content的值,稍微有些麻烦,如果是动态告诉的subheader就麻烦了,还需要动态更改content的数值,所以就写了一个directive解决这个问题

上代码吧

主要代码

/
 Created by Richard on 9/21/16.
/
'use strict';
// @ngInject
module.exports = function() {
return {
link: function(scope, element, attrs) {
scope.$watch(function() {
let height = element[0].offsetHeight + 44;
let content = angular.element(document.querySelector('.has-subheader'));
content.css("", height + "px");
});
}
}
};

定义directie:

.directive('customSubheader', customSubheader)

重写css:

.bar-subheader {
height: auto;
}

使用方法

<div custom-subheader class="bar bar-subheader">
</div>

以上所述是长沙网络推广给大家介绍的IONIC自定义subheader的最佳解决方案,希望对大家有所帮助,如果大家有任何疑问请给我留言,长沙网络推广会及时回复大家的。在此也非常感谢大家对狼蚁SEO网站的支持!

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by