“User:Chinanjzyq”的版本间的差异

来自Stardew Valley Wiki
跳到导航 跳到搜索
(建立内容为“<!DOCTYPE html> <html> <head> <title>科技感页面</title> <style> body { margin: 0; padding: 0; background-color: #000; overf…”的新页面)
标签移动版编辑 移动网页编辑
 
(这不属于维基)
标签清空
 
(未显示另一用户的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的最新版本