Created
August 27, 2012 18:51
-
-
Save deitrick/3491295 to your computer and use it in GitHub Desktop.
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
<a href="#" class="blue-button" >Dance with me</a> |
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
$(function () { | |
setTimeout(function(){ | |
$("a.blue-button").addClass("active"); | |
},2000); | |
setTimeout(function(){ | |
$("a.blue-button").removeClass("active"); | |
},2500); | |
setTimeout(function(){ | |
$("a.blue-button").addClass("active"); | |
},3500); | |
setTimeout(function(){ | |
$("a.blue-button").removeClass("active"); | |
},4000); | |
}); |
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
a.blue-button{ | |
font-family: helvetica; | |
position: absolute; | |
top: 15px; | |
background-color : #0092cf; | |
background-image: linear-gradient(bottom, rgb(44,160,202) 0%, rgb(62,184,229) 100%); | |
padding: 5px 20px; | |
border-left: solid 1px #2ab7ec; | |
margin-left: 35px; | |
border-radius: 5px; | |
box-shadow: inset 0px 1px 0px #2ab7ec, 0px 5px 0px 0px #156785; | |
font-size: 16px; | |
text-decoration: none; | |
text-transform: uppercase; | |
color:#fff; | |
} | |
a.blue-button:active { | |
top: 18px ; | |
background-image: linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%) ; | |
box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785; | |
} | |
.active { | |
top: 18px !important; | |
background-image: linear-gradient(bottom, rgb(62,184,229) 0%, rgb(44,160,202) 100%) !important; | |
box-shadow: inset 0px 1px 0px #2ab7ec, 0px 2px 0px 0px #156785 !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment