Ionic2 渐变隐藏导航栏|标题栏

Posted super_cj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ionic2 渐变隐藏导航栏|标题栏相关的知识,希望对你有一定的参考价值。

废话少说 直接上代码....

//导入需要用到的命名空间 ViewChild,Content
import { Component, ViewChild } from ‘@angular/core‘;
import { NavController, ModalController, ToastController, Content } from ‘ionic-angular‘;

@Component({
  selector: ‘home‘,
  templateUrl: ‘home.html‘,
})
export class HomePage {
  @ViewChild(Content) content: Content;  //获取界面Content的实例对象

 //获取滑动的TOP值,并在200px时使标题栏达到透明 onPageScroll(event) { let position = event.target.scrollTop;//取滑动TOP值 this.transrate = 2 - position / 100; document.getElementById("home_title").style.opacity = this.transrate.toString();   // this.content.resize(); console.log(position); }
 //界面初始化时注册界面滑动事件 ngAfterViewInit() { this.content.addScrollListener(this.onPageScroll); } }




//界面代码
给标题栏加个ID即可
<ion-header style="opacity:0" id="home_title">

  

以上是关于Ionic2 渐变隐藏导航栏|标题栏的主要内容,如果未能解决你的问题,请参考以下文章

向导航栏添加渐变将隐藏 iOS 13.0 + 中的栏按钮项目

iOS导航栏背景透明渐变

仿知乎/途家导航栏渐变文字动画效果-b

在导航栏和状态栏上设置渐变

导航栏渐变效果

底部应用栏在使用片段导航时向上/向下滑动(导航架构组件)