Created
July 7, 2015 01:42
-
-
Save uiur/d8a6a65a474486d14c99 to your computer and use it in GitHub Desktop.
css and linear algebra
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title></title> | |
<link rel="stylesheet" href="style.css" media="screen" title="no title" charset="utf-8"> | |
</head> | |
<body> | |
<div class="box"></div> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.box { | |
margin: 200px auto; | |
width: 200px; | |
height: 200px; | |
transition: ease .3s; | |
background-image: url(https://i.gyazo.com/thumb/200_crop/_486067d32b828b6346b51715ae8c3309.png); | |
background-size: cover; | |
/* | |
1 0 | |
0 1 | |
*/ | |
transform: matrix(1, 0, 0, 1, 0, 0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment