1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-07 18:30:34 +00:00
pdf2htmlEX/logo/test.html
2013-09-27 19:48:40 +08:00

43 lines
1.3 KiB
HTML

<!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>