$scope.getPosition = function () {
//Toast.show($ionicScrollDelegate.getScrollPosition().top,'top');
if ($ionicScrollDelegate.getScrollPosition().top > 40) {
$ionicNavBarDelegate.showBar(true);
} else {
$ionicNavBarDelegate.showBar(false);
}
};
bar color opacity 0 bar color white
当我向下滚动到底部时,标题栏从透明颜色逐渐变为白色
提前谢谢!!!