Home > Web Front-end > JS Tutorial > AeroWindow pop-up window plug-in based on JQuery_jquery

AeroWindow pop-up window plug-in based on JQuery_jquery

WBOY
Release: 2016-05-16 18:05:39
Original
1027 people have browsed it

You can create multiple pop-up windows on one page, and the selected pop-up window will be highlighted. You can have multiple pop-up windows on the same web page, and you can also double-click the window to maximize it, just like Windows. If you want to make a page similar to an operating system, it is completely possible to use this plug-in. Compatible with multiple major browsers.
AeroWindow pop-up window plug-in based on JQuery_jquery
The most basic calling method:

Copy the code The code is as follows:
$('#YourContainerDiv').AeroWindow((WindowTitle:'hello world',));

Call with all parameters:
Copy code The code is as follows:

$('#YourContainerDiv').AeroWindow({
WindowTitle: 'My first very cool Aero Window for Web',
WindowPositionTop: 'center',
WindowPositionLeft: 'center',
WindowWidth: 400,
WindowHeight: 100,
WindowAnimation: 'easeOutCubic',
WindowResizable: true,
WindowDraggable : true,
WindowMinimize: true,
WindowMaximize: false,
WindowClosable: true
});

Usage:
First add the following quote:
Copy code The code is as follows:




Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template