26 lines
519 B
HTML
26 lines
519 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
|
<title>副屏GIF</title>
|
|
<style>
|
|
.content{
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
.content img{
|
|
max-width: 95%;
|
|
max-height: 95%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="content">
|
|
<img src="./rouse.gif">
|
|
</div>
|
|
</body>
|
|
</html> |