This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
.glow {text-shadow: 0 0 5px rgba(81, 203, 238, 1);} | |
.focusGlow { | |
box-shadow: 0 0 5px 1px rgba(81, 203, 238, 1) !important; | |
border: 1px solid rgba(81, 203, 238, 1) !important; | |
-webkit-animation: shadow 0.5s ease-in-out infinite !important; | |
-moz-animation: shadow 0.5s ease-in-out infinite !important; | |
animation: shadow 0.5s ease-in-out infinite !important; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
$j(function($j){ | |
//Below are few examples. Replace the IDs with your own form field IDs. | |
$j("#phone_number_north_america").mask("(999) 999-9999"); | |
$j("#phone_number_2_north_america").mask("1-999-999-9999"); | |
$j("#postal_code").mask("a9a 9a9"); | |
$j("#zipcode").mask("99999"); | |
}); | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
var e = jQuery('#lp-pom-text-120'); //Replace with your element ID | |
var a = jQuery('.lp-pom-root'); | |
e.css({'left':0, 'width':'100%', 'box-sizing':'border-box'}).prependTo(a); | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> | |
<script> | |
$('.counter').each(function() { | |
var $this = $(this), | |
countTo = $this.attr('data-count'); | |
$({ countNum: $this.text()}).animate({ | |
countNum: countTo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
$(function() { | |
$('.lp-pom-image a, .lp-pom-text a').not('a[href^=#]').each( function() { | |
this.href = this.href + window.location.search; | |
}); | |
}); | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
/* Update #lp-pom-box-53 with the ID of your landing page's box element. */ | |
#lp-pom-box-53, #lp-pom-box-53-color-overlay {display: none;} | |
</style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.1/animate.min.css"> | |
<style> | |
.revealOnScroll{opacity:0;} | |
</style> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
/* Replace #lp-pom-button-18 with the ID of your back to top button */ | |
#lp-pom-button-18 { | |
position: fixed; | |
top: auto; | |
left: auto; | |
bottom: 0; | |
right: 0; | |
margin-bottom: 2%; | |
margin-right: 2%; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |