First Initial
This commit is contained in:
33
wwwroot/BackendScript/js/pulstate.js
Normal file
33
wwwroot/BackendScript/js/pulstate.js
Normal 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
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
}();
|
||||
Reference in New Issue
Block a user