离子图像叠加效果

时间:2018-04-19 20:07:45

标签: android ios ionic-framework ionic2

image overlay effect 嗨,大家好。 我需要创建一个图像叠加效果,如图所示,有没有人能够帮助我?

1 个答案:

答案 0 :(得分:0)

这看起来像是modal controller的任务,启用了背景(默认情况下已启用)和自定义CSS样式。

presentProfileModal() {
   let profileModal = this.modalCtrl.create(Profile, { userId: 8675309 }, {showBackdrop: true, cssClass: 'my, css, classes' });
   profileModal.present();
 }

个人资料只是另一个组件/页面。请参阅文档中的示例,您可以将图像数据告诉控制器您想要显示哪个图像。