Skip to content

Instantly share code, notes, and snippets.

@fredj
Created June 21, 2019 11:44
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 fredj/2062b4ec7e0df09e0b76661ca185538d to your computer and use it in GitHub Desktop.
Save fredj/2062b4ec7e0df09e0b76661ca185538d to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<title>will-change</title>
<meta charset="utf-8" />
<style>
#foo {
width: 100px;
height: 20px;
background-color: red;
position: absolute;
top: 50px;
will-change: top;
}
</style>
</head>
<body>
<div id="foo"></div>
<script>
document.querySelector("#foo").style.top = 0;
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment