4

I have been stuck on problem related to the ionic framework in which , whenever I click on slide menu then befor page slide, dark black color occurring like black box in iPhone and iPad, and same it is happing each and every click of slide or transition or navigation.

So any body has solution regarding that please let me know.

Thanks Shivam

Code_S
  • 194
  • 2
  • 12
  • can you post some code? – Jess Patton Jul 08 '15 at 16:17
  • Well I found solution in form Thanks – Code_S Jul 09 '15 at 19:28
  • 2
    Found a solution and didn't post it? Not cool dude... – Shay Oct 07 '15 at 06:41
  • Sorry my friend , actually no one ask except me, just follow path lib/ionic/ionic.css and put this code at bottom [nav-view-transition="ios"][nav-view-direction="forward"], [nav-view-transition="ios"][nav-view-direction="back"] { background-color: transparent !important; } – Code_S Oct 07 '15 at 08:12

1 Answers1

3

Add transparency to background between view transition:

[nav-view-transition][nav-view-direction] { background-color: transparent; }

I added the above css to my custom styles.css.

Also, remove any abstract states and this should fix your black screen issue between navigation(s).

Arun Gopalpuri
  • 2,340
  • 26
  • 27