Skip to content

Commit

Permalink
add load svg
Browse files Browse the repository at this point in the history
  • Loading branch information
madneal committed Jun 7, 2017
1 parent 16dcd8c commit 6ada256
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
1 change: 1 addition & 0 deletions load.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 19 additions & 1 deletion popup.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,24 @@
button {
display: inline;
}

img {
width: 50px;
height: 50px;
position: fixed;
left: 50%;
top: 50%;
transform: rotate(360deg);
transition: all 1s ease-in-out;
}

span:hover {
transform: rotate(180deg);
-moz-animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
-o-animation-iteration-count: infinite;
transition: all 1s ease-in-out;
}
</style>
</head>

Expand All @@ -37,7 +55,7 @@ <h1>The export result</h1>
<li><button class="export">export</button></li>
</ul>


<span><img src="load.svg"></span>
<div class="main">
<div class="left-area">
<textarea id="source"></textarea>
Expand Down

0 comments on commit 6ada256

Please sign in to comment.