First Initial

This commit is contained in:
Nakorn Rientrakrunchai
2020-02-20 15:02:39 +07:00
commit 8b98125e49
3048 changed files with 760804 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
var Pulstate = function () {
// pulstate
jQuery('#pulsate-regular').pulsate({
color: "#E74955"
});
jQuery('#pulsate-once').click(function () {
$(this).pulsate({
color: "#A5D16C",
repeat: false
});
});
jQuery('#pulsate-hover').pulsate({
color: "#4A8BC2",
repeat: false,
onHover: true
});
jQuery('#pulsate-crazy').click(function () {
$(this).pulsate({
color: "#FCB322",
reach: 50,
repeat: 10,
speed: 100,
glow: true
});
});
}();