1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-03 08:38:39 +00:00
This commit is contained in:
Lu Wang 2013-09-27 19:54:29 +08:00
parent cddfaf6ae2
commit 516e9f68b1
2 changed files with 6 additions and 42 deletions

View File

@ -1,42 +0,0 @@
<!doctype html>
<html><body>
<style type="text/css">
@-moz-keyframes rotate {
from { -moz-transform: rotate(0deg); }
to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes rotate {
from { -webkit-transform: rotate(0deg); }
to { -webkit-transform: rotate(360deg); }
}
#shadow, #emblem{
position:relative;
-moz-animation: rotate 18s linear 0s infinite;
-webkit-animation: rotate 18s linear 0 infinite;
display:inline-block;
position:absolute;
}
#shadow {
height: 64px;
width: 64px;
}
#emblem {
height: 62px;
width: 62px;
}
#rotating-emblem{
margin:auto;
position:relative;
height:64px;
width:64px;
top:50%;
margin-top:-32px;
left:50%;
margin-left:-32px;
}
</style>
<div id="rotating-emblem">
<img id="shadow" src="pdf2htmlEX-shadow.svg">
<img id="emblem" src="pdf2htmlEX-plain.svg">
</div>
</body></html>

6
logo/update_png.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
convert -background none -resize 64x64^ pdf2htmlEX.svg pdf2htmlEX-64x64.png
convert -background none -resize 256x256^ pdf2htmlEX.svg pdf2htmlEX-256x256.png
convert -background none -resize 62x62^ pdf2htmlEX-plain.svg pdf2htmlEX-plain-62x62.png
convert -background none -resize 64x64^ pdf2htmlEX-shadow.svg pdf2htmlEX-shadow-64x64.png