Floating window Cordova

346 views Asked by At

I'm developing an application with Cordova, and need to display some information brought from BD when the user clicks a button, however I can not send to another screen, I would like to display a kind of popup, there how to do this? Obs .: I've tried to use Toast but it is not what I need.

1

There are 1 answers

1
AudioBubble On

@Vinicius,

What is BD?

To do the thing you want use with position:absolute. These are the classes you want.

.hidden  {visibility:hidden;display:none;}
.visible {visibility:visible;display:block;}

And you will need to layer it on top of everything

http://www.w3schools.com/css/css_positioning.asp

Questions?