Created
May 16, 2013 01:52
-
-
Save jacksonhenry3/5588846 to your computer and use it in GitHub Desktop.
testing_transitions
This file contains 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
<html> | |
<head> | |
<link rel="stylesheet" type="text/css" href="style.css"/> | |
<link rel="SHORTCUT ICON" href="favicon.ico"> | |
</head> | |
<body> | |
<div id = "nav_bubble"></div> | |
</body> | |
</html> |
This file contains 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
body | |
{ | |
margin:0px; | |
} | |
#nav_bubble | |
{ | |
position:fixed; | |
top:-125; | |
left:-125; | |
width : 250px; | |
height: 250px; | |
border-radius:500px; | |
background-color:#f97743; | |
transition:top .5s,left .5s, width .2s, height .2s; | |
} | |
#nav_bubble:hover | |
{ | |
top:-150; | |
left:-150; | |
width : 300px; | |
height: 300px; | |
border-radius:500px; | |
background-color:#f97743; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment