ionic中的ion-scroll 高度问题
我用ion-scroll设定下半部分的内容是滚动的,还必须设定高度,min高度和百分比高度都不行,要固定高度但是因为手机尺寸的不同,设定不了下半部分到手机底部的这段距离,加什么代码才能让ion-scroll自动计算出下半部分的高度,不需要设固定高度
js获取浏览器高度,然后通过js设置ion-scroll的高度
http://www.cnblogs.com/EricaMIN1987_IT/p/3593431.html 哥们 你解决了吗 .directive('scrollHeight',function($window){
return{
restrict:'AE',
link:function(scope,element,attr){
element.style.height=($window.innerHeight-44-49)+'px';
}
}
})
然后在ion-scroll上面加上scroll-height指令。
<ion-scroll scroll-height>
hhafeng 发表于 2016-4-14 10:23
.directive('scrollHeight',function($window){
return{
restrict:'AE',
这个方法在网上看到了。
但还需要完善。
比如减 44,49 的地方,在不同分辨率下,这个数值也是变化的,所以都应该是动态的变量才行。
页:
[1]