Home > Technical & Creative Skills > Programming, Servers & Scripts

Looking for some conversions scripts (5)


02-14-2018 02:13 PM #1 mrdeath4 (Member)
Looking for some conversions scripts

Hey guys!
I'm running COD offers and I want to try some popups on my landers.
Here is an example:
http://netmall.su/biom-winter/
The girl on bottom - you click and get a popup.

But I need something like that but for mobile. DId you have such pops or maybe you saw somewhere?

So I need a small button like this girl and a popup designed for mobile.


02-21-2018 10:09 PM #2 navidaffiliate (Member)

Now I don't know how much HTML do you know but what you basically need is a button which displays/show your popup div.

I don't write the excat code here because I don't know how much HTML knowdlege you have but I'll give you the main stuff.

First you need a button which basically "sends" the signal to your popup. To have it bottom of the page you can use this css:

button{
position:fixed;
bottom:0;
left:0;
z-index:9;
}


Then you need your popup div and your content div inside that popup. You popup div can be:
<div class="popup" style="display:none;">
<div class="popup-content">Content here</div>
</div>


Popup can have this CSS:
.popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:99;
}

and your content div inside popup can be:
.popup-content{
width:90%;
height:90%;
margin:10px auto;
}


and with JS you can do:
$('button').click(function(){
$('.popup').show();
});

You can take a look at it here: https://jsfiddle.net/p8awjdnk/3/
Ofcourse you would need some more styling and stuff but this is the main stuff.


02-22-2018 08:28 AM #3 mrdeath4 (Member)

Quote Originally Posted by navidaffiliate View Post
Now I don't know how much HTML do you know but what you basically need is a button which displays/show your popup div.

I don't write the excat code here because I don't know how much HTML knowdlege you have but I'll give you the main stuff.

First you need a button which basically "sends" the signal to your popup. To have it bottom of the page you can use this css:

button{
position:fixed;
bottom:0;
left:0;
z-index:9;
}


Then you need your popup div and your content div inside that popup. You popup div can be:
<div class="popup" style="display:none;">
<div class="popup-content">Content here</div>
</div>


Popup can have this CSS:
.popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:99;
}

and your content div inside popup can be:
.popup-content{
width:90%;
height:90%;
margin:10px auto;
}


and with JS you can do:
$('button').click(function(){
$('.popup').show();
});

You can take a look at it here: https://jsfiddle.net/p8awjdnk/3/
Ofcourse you would need some more styling and stuff but this is the main stuff.
thank you very much


02-22-2018 09:14 AM #4 khzidan (AMC Alumnus)

you can use external popups service

Easy, simple and no need to know coding too.

I use poptin.com


02-22-2018 10:44 AM #5 mrdeath4 (Member)

Quote Originally Posted by khzidan View Post
you can use external popups service

Easy, simple and no need to know coding too.

I use poptin.com
thanks - gonna try it


Home > Technical & Creative Skills > Programming, Servers & Scripts