adPopup Pro for jQuery
$9.00
430 sales
LIVE PREVIEWIntroduction
In today’s digital landscape, advertisers and website owners are constantly seeking innovative ways to capture their audience’s attention and increase engagement. One effective method is the use of pop-up ads, which can be triggered by various factors such as browser type, operating system, screen size, and more. AdPopup Pro for jQuery is a powerful plugin that allows you to create and display targeted pop-up ads to your visitors, providing a high level of customization and flexibility.
Review
AdPopup Pro is a robust jQuery plugin that offers a wide range of features to help you create and display targeted pop-up ads to your visitors. With its built-in browser detection, OS detection, screen size detection, tablet detection, and mobile detection, you can show your pop-up ads only to the visitors you want to. This ensures that your ads are seen by the right people, increasing their effectiveness and reducing the likelihood of annoying visitors who don’t meet your target criteria.
One of the standout features of AdPopup Pro is its ability to set the show type, which allows you to control when and how often the pop-up ad is displayed. You can choose from a range of options, including always, session, day, month, year, and chance, to ensure that your ads are displayed in a way that maximizes their impact.
In addition to its advanced targeting features, AdPopup Pro also offers a high level of customization, allowing you to tailor the look and feel of your pop-up ads to match your website’s styling. You can set the color scheme of the close button, overlay, and popup background, and choose to hide the close button or overlay to create a seamless user experience.
But what really sets AdPopup Pro apart is its ability to cycle between multiple pop-up ads randomly. This means that you can create a series of ads and the plugin will automatically rotate through them, keeping your visitors engaged and interested.
Score: 4.55
Overall, AdPopup Pro is an excellent choice for anyone looking to create and display targeted pop-up ads to their visitors. Its advanced targeting features, high level of customization, and ability to cycle between multiple ads make it a powerful tool for advertisers and website owners. While it may not be perfect, its 4.55 score indicates that it is a well-regarded and effective plugin that is definitely worth considering.
Conclusion
AdPopup Pro is a feature-rich jQuery plugin that offers a high level of customization and flexibility when it comes to creating and displaying targeted pop-up ads. Its advanced targeting features, ability to set the show type, and random ad cycling make it an excellent choice for anyone looking to increase engagement and conversions on their website. Whether you’re an advertiser or a website owner, AdPopup Pro is definitely worth considering.
User Reviews
Be the first to review “adPopup Pro for jQuery” Cancel reply
Introduction
AdPopup Pro for jQuery is a powerful plugin designed to help you create sophisticated and customizable pop-up windows for your website or web application. With its simple and intuitive API, AdPopup Pro allows you to create a wide range of pop-up effects, such as modal windows, layer overlays, and notification balloons, to name a few. In this tutorial, we will guide you step-by-step on how to use AdPopup Pro for jQuery to create engaging pop-up experiences for your audience.
Getting Started with AdPopup Pro for jQuery
Before we dive into the tutorial, make sure you have the following requirements fulfilled:
- jQuery v1.7.1 or higher installed on your website.
- You have downloaded and extracted the AdPopup Pro plugin archive to your website's js folder.
Basic Structure and Configuration
AdPopup Pro consists of a core JavaScript file (adPopup.min.js
) and two optional CSS files (adPopup.css
and adPopup-theme-default.css
). The core JavaScript file contains the plugin's main functionality, while the two CSS files provide a pre-designed theme and basic styles for the pop-up.
To use AdPopup Pro, you need to include the JavaScript file in your page's <head>
tag and configure the plugin via JavaScript.
Configuring AdPopup Pro
Add the following code in the <head>
tag of your HTML file to include AdPopup Pro:
<script src="path/to/adPopup.min.js"></script>
Replace path/to/
with the actual file path where you have downloaded and extracted the AdPopup Pro plugin.
Now, let's configure AdPopup Pro using JavaScript. First, create a global AdPopup Pro object:
var popupConfig = {
// general settings
title: 'My Pop-up Window',
width: 400,
height: 300,
resize: true,
offset: 20,
// animation settings
animations: {
'animateIn': 'slideUp',
'animateOut': 'slideDown'
}
};
The above code sets basic options for your pop-up, such as title, width, height, and animations. You can customize these settings to fit your requirements.
Creating and Showcasing the Pop-up
To create the pop-up, use the AdPopup Pro's popUp()
method, which takes an object as a parameter. This object is used to configure the pop-up's content and layout.
Create a div container to hold the pop-up content:
<div id="myPopup" style="display:none;"></div>
Now, use the AdPopup Pro's popUp()
method to create the pop-up:
$.adPopup(
popupConfig,
{
content: `<p>This is a test pop-up!</p>`
}
);
The above code creates the pop-up with the custom content and applies the animated effects specified in the animations
object.
Show the pop-up using the AdPopup Pro's show()
method:
$.adPopup().show();
Now, when you click or hover over a link/image, the pop-up window will appear with the content and animation effects defined above.
Advanced Topics
AdPopup Pro provides more advanced features, such as:
- Loading content dynamically: Use AdPopup Pro's
loading()
method to load pop-up content dynamically using JavaScript or an AJAX request. - Styling and theming: Override AdPopup Pro's styles using CSS or provide custom themes for your pop-ups.
- Conditional logic: Use AdPopup Pro's
hide()
andshow()
methods to control the visibility of the pop-up based on specific conditions.
For a detailed example of how to use AdPopup Pro's advanced features, please refer to the official documentation or check the plugin's GitHub page for more information.
Conclusion
In this tutorial, we have covered the basic structure and configuration of AdPopup Pro for jQuery. We have also created and showcased a simple pop-up window using the popUp()
method. For more advanced features and configuration options, please refer to the official documentation and additional resources provided by the developer.
With AdPopup Pro, you can create versatile and engaging pop-up windows for your website or web application, enhancing user interactions and increasing conversions. Try it out today!
Here is an example of how to configure adPopup Pro for jQuery:
Target Element
targetElement: '#top-button',
This setting specifies the HTML element that will be used as the trigger for the popup. In this example, the popup will be triggered when the element with the ID "top-button" is clicked.
Popup Content
popupContent: '<h2>AdPopup Pro Example</h2><p>This is a sample popup.</p>',
This setting specifies the HTML content that will be displayed in the popup. In this example, the popup will display a heading and a paragraph of text.
Popup Options
popupOptions: {
width: 300,
height: 200,
modal: true,
animation: 'fade',
speed: 500
},
This setting specifies additional options for the popup, such as its width, height, and whether it should be modal (covering the entire page). It also specifies the animation type and speed.
Button Options
buttonOptions: {
text: 'Close',
class: 'close-btn'
},
This setting specifies options for the popup's close button, such as its text and CSS class.
Events
events: {
beforeShow: function() {
console.log('Popup is about to show');
},
afterShow: function() {
console.log('Popup has been shown');
},
beforeHide: function() {
console.log('Popup is about to hide');
},
afterHide: function() {
console.log('Popup has been hidden');
}
},
This setting specifies event handlers that will be triggered at different points in the popup's lifecycle, such as when it is about to show or hide.
Initialization
$().adPopup({
targetElement: '#top-button',
popupContent: '<h2>AdPopup Pro Example</h2><p>This is a sample popup.</p>',
popupOptions: {
width: 300,
height: 200,
modal: true,
animation: 'fade',
speed: 500
},
buttonOptions: {
text: 'Close',
class: 'close-btn'
},
events: {
beforeShow: function() {
console.log('Popup is about to show');
},
afterShow: function() {
console.log('Popup has been shown');
},
beforeHide: function() {
console.log('Popup is about to hide');
},
afterHide: function() {
console.log('Popup has been hidden');
}
}
});
This setting initializes the adPopup Pro plugin and passes in all the previously specified settings.
There are no reviews yet.