Skip to content

Instantly share code, notes, and snippets.

@kevinluo201
Last active October 17, 2018 07:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kevinluo201/06b339ff8c0c753dcf489945d141936f to your computer and use it in GitHub Desktop.
Save kevinluo201/06b339ff8c0c753dcf489945d141936f to your computer and use it in GitHub Desktop.
下箭頭 icon 動畫
window.setInterval(() => {
let b = parseInt($(".arrow-down").css("bottom")) - 1;
let o = parseFloat($(".arrow-down").css("opacity")) - 1 / 30;
if(b < 0){
b = 30;
o = 1;
}
$(".arrow-down").css({
bottom: b + "px",
opacity: o
})
}, 1000 / 30);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment