8
Widgets Popup Panel is an interactive hide/show panel that takes over most of the currrent viewport to gain the full attention of the user. Updated: 28 November 2016
Widgets Popup Panel is an interactive hide/show panel that takes over most of the currrent viewport to gain the full attention of the user.
It can be useful in education and academic digital content. It is useful for structured content such as notes, footnotes, glossary definitions and indexes, but can also be used for supplementary content. In AIE Widgets Popup Panels are authored containers that are hidden until required. You can include any content into a pop-up and style it appropriately for the content.
The popup panel is designed to take over most of the viewport when launched. It is a "may I have your complete attention" tool. The popup panel can contain any content including interactivity, rich media animations and even 3D objects.
Popups can be launched from text, headings, titles and icons.
Pop-ups size to the system window. If you are targeting generic viewport aspect ratios you must have an elastic design in your pop-up panel that is tested for 4:3, 16:10 and 16:9.
You can see the Popup panel by clicking Hello in the title of this page or check it out by clicking here to see Panel Popup in action.
Popup Panel comes with default size of 80% X 80%. The default size can be customized according to the requirement of the project and design of the book.
To insert Widgets Panel PopUp into an IGP:Writer document.
By default Panel PopUp block will be hidden in the output format. This block is invoked and displayed by internal ID references. It can be called from anywhere and from multiple places within the section.
We have kept presentation design as simple as possible. Because it can be customized anytime as needed. The presentation and size of Panel can be customized at any time.
To change the size of the panel (or any other styling),
The PopUp Content Block content in thi article is placed between the following dotted lines, which is hidden in a normal view.
=======================
======================
<!-- POPUP PANEL --> <div class="widgets-rw panel-popup-rw"> <h4>I am a Panel PopUp Content Block</h4> <p>Your content goes here. You can insert any content including: Text, images, audio and video.</p> </div> <!-- POPUP PANEL REFERENCE LINK --> <span class="ref-panel-popup-rw" data-pp-target="pp1">Hello</span>
Note that Widget references use the HTML5 data- attribute.
/*DEFAULT POPUP PANEL CSS =============== */ div.panel-popup-rw { position: absolute; width: 80%; height: 80%; top: 10% !important; left: 10% !important; display: none; overflow: auto; font-size: 1em; font-weight: normal; font-style: normal; color: rgb(0, 0, 0); box-shadow: 5px 5px 10px black; border-radius: 10px; background-color: rgba(220, 220, 200, 1); background: -moz-linear-gradient(top, rgba(254,255,232,1) 0%, rgba(214,219,191,1) 100%); background: -webkit-linear-gradient(top, rgba(254,255,232,1) 0%,rgba(214,219,191,1) 100%); background: linear-gradient(to bottom, rgba(254,255,232,1) 0%,rgba(214,219,191,1) 100%); z-index: 99999999999999; margin: 0; padding: 10px; } /*DEFAULT POPUP PANEL REFERENCE CSS =============== */ .ref-panel-popup-rw { color: blue; text-decoration: none; cursor: pointer; } .ref-panel-popup-rw:hover { text-decoration: underline; }