Update basicanimations.js
This commit is contained in:
@@ -1,9 +1,11 @@
|
|||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$("#ContentToInclude").load("/menu.html");
|
$("#ContentToInclude").load("/menu.html");
|
||||||
$(".linkbutton").mouseenter(function() {
|
$(".linkbutton").mouseenter(function() {
|
||||||
|
$(this).stop()
|
||||||
$(this).animate({"border-radius": "0px", "background-color": "darkblue"}, 200)
|
$(this).animate({"border-radius": "0px", "background-color": "darkblue"}, 200)
|
||||||
})
|
})
|
||||||
$(".linkbutton").mouseleave(function() {
|
$(".linkbutton").mouseleave(function() {
|
||||||
|
$(this).stop()
|
||||||
$(this).animate({"border-radius": "20px", "background-color": "rgba(0,0,0,0)"}, 200)
|
$(this).animate({"border-radius": "20px", "background-color": "rgba(0,0,0,0)"}, 200)
|
||||||
})
|
})
|
||||||
$(".textlink").mouseenter(function() {
|
$(".textlink").mouseenter(function() {
|
||||||
|
|||||||
Reference in New Issue
Block a user