animations.css |
css/animations.css |
|
.animated {
animation-duration: 1s;
animation-fill-mode: both;
-webkit-animation-duration: 1s;
-webkit-animation-fill-mode: both;
}
@keyframes down_fade {
from {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
to {
… |
npop.admin.inc |
npop.admin.inc |
|
Node popup module administration pages functions. |
npop.api.php |
npop.api.php |
|
Hooks provided by Node popup nodule. |
npop.css |
css/npop.css |
|
.npop {
left: 0;
position: fixed;
top: 0;
z-index: 1000;
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%;
overflow: auto;
background: rgba(0, 0, 0, .7);
}
.npop .npop-content {
left: 50%;
margin-left: -360px;
… |
npop.info |
npop.info |
|
name = Node popup module
description = Allow to view nodes on popup window
core = 7.x
files[] = views/npop_handler_field_npop.inc
files[] = views/npop_handler_field_npop_link.inc |
npop.install |
npop.install |
|
Contains install and update functions for npop module. |
npop.module |
npop.module |
|
Create popup nodes with ajax and Drupal core functionality. |
npop.views.inc |
views/npop.views.inc |
|
Node poup module views hooks. |
npop_handler_field_npop.inc |
views/npop_handler_field_npop.inc |
|
Views handlers for Node popup module. |
npop_handler_field_npop_link.inc |
views/npop_handler_field_npop_link.inc |
|
Views handlers for Node popup(npop) module. |
README.txt |
README.txt |
|
***********
* README: *
***********
INSTALLATION:
-------------
1. Place the entire npop directory into your Drupal sites/all/modules/
directory.
2. Enable the Node popup (npop) module by navigating to:
administer > modules
HOW… |