「User:Chinanjzyq」修訂間的差異

出自Stardew Valley Wiki
跳至導覽 跳至搜尋
(建立内容为“<!DOCTYPE html> <html> <head> <title>科技感页面</title> <style> body { margin: 0; padding: 0; background-color: #000; overf…”的新页面)
標籤流動版編輯 流動版網頁編輯
 
(这不属于维基)
標籤清空
 
(未顯示由 1 位使用者於中間所作的 1 次修訂)
第1行: 第1行:
<!DOCTYPE html> 
+
 
<html> 
 
<head> 
 
<title>科技感页面</title> 
 
<style> 
 
body { 
 
margin: 0; 
 
padding: 0; 
 
background-color: #000; 
 
overflow: hidden; 
 
 
.pattern { 
 
position: absolute; 
 
top: 0; 
 
left: 0; 
 
width: 100%; 
 
height: 100%; 
 
background-image: url('data:image/png;base64,iVBORw0KGg'); 
 
background-size: 50px; 
 
background-repeat: repeat; 
 
animation: pattern 10s infinite; 
 
 
@keyframes pattern { 
 
0% { 
 
background-position: 0 0, 50px 50px; 
 
 
50% { 
 
background-position: 100px 100px, 0 0; 
 
 
100% { 
 
background-position: 0 0, -50px -50px; 
 
 
 
.text { 
 
position: absolute; 
 
top: 50%; 
 
left: 50%; 
 
transform: translate(-50%, -50%); 
 
color: #fff; 
 
font-size: 48px; 
 
text-align: center; 
 
line-height: 100px; 
 
 
</style> 
 
</head> 
 
<body> 
 
<div class="pattern"></div> 
 
<div class="text">ZYQ</div> 
 
</body> 
 
</html>
 

於 2023年10月15日 (日) 17:32 的最新修訂