-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
091e19e
commit 72d93ea
Showing
8 changed files
with
134 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<!--这是blig的had模板--> | ||
|
||
<a id="button1" href="index.html">回到主页</a> | ||
<a id="button">没想好</a> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<!DOCTYPE html> | ||
<html lang="zh"> | ||
<head> | ||
<title>GTEJRの内心ページ</title> | ||
<meta charset="UTF-8"> | ||
<link rel="icon" href="ico/favicon.ico" type="image/x-icon"> | ||
<link rel="stylesheet" href="css/main.css"><!--统一样式--> | ||
<link rel="stylesheet" href="css/blig.css"><!--blig--> | ||
</head> | ||
<body> | ||
|
||
<!--背景图片--> | ||
<img class="background-image" src="background/bg1.png" alt="Background Image"> | ||
|
||
|
||
<!--调用blog类页面的头 file://协议不支持,不用惊慌--> | ||
<div class="DivStyle-Glass" id="blig_had"></div><!--日你妈是个blig就给我填上--> | ||
|
||
|
||
<!--正文--> | ||
<div class="DivStyle-Glass" style="width: 30%; height: 100px; display: flex; align-items: center"><!--class="DivStyle-Glass"用于调用默认的毛玻璃效果--> | ||
class="DivStyle-Glass"用于调用默认的毛玻璃效果,其余效果自己设置 | ||
</div> | ||
|
||
|
||
<!--copy文字内容 目前只支持一个page一个内容--> | ||
<p id="textToCopy">你妈死了</p><!--要复制的内容(检测id)--> | ||
<a class="button" onclick="copyText()">复制文本</a><!--按钮--> | ||
<script src="js/cptext.js"></script><!--这个一般放在末尾</body前面>--> | ||
|
||
<p></p> | ||
|
||
<a id="LinkText1" href="#">链接格式1</a> | ||
<a id="button1" href="#">按钮格式1</a> | ||
<a id="button" href="#">按钮格式</a> | ||
|
||
<script src="js/blig_had.js"></script><!--blug 头部--> | ||
|
||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/*因为main.css较为久远,比较混乱,因此博客类page请调用它*/ | ||
|
||
#blig_had{ | ||
width: 100%; | ||
height: 100px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
#blig_had a{ | ||
margin-left: 30px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html lang="zh"> | ||
<head> | ||
<title>GTEJRの内心ページ</title> | ||
<meta charset="UTF-8"> | ||
<link rel="icon" href="ico/favicon.ico" type="image/x-icon"> | ||
<link rel="stylesheet" href="css/main.css"><!--统一样式--> | ||
<link rel="stylesheet" href="css/blig.css"><!--blig--> | ||
</head> | ||
<body> | ||
<!--copy文字内容--> | ||
<a style="opacity: 0; max-width: 0; max-height: 0;" id="textToCopy">你妈死了</a><!--可选--> | ||
<!--背景图片--> | ||
<img class="background-image" src="background/bg1.png" alt="Background Image"><!--可选--> | ||
<!--调用blog类页面的头 file://协议不支持,不用惊慌--> | ||
<div class="DivStyle-Glass" id="blig_had"></div><!--日你妈是个blig就给我填上--> | ||
|
||
<!--正文--> | ||
<div class="DivStyle-Glass" style="width: 100%;height: 300px; margin-top: 30px; padding: 20px 20px 20px 20px;"><!--class="DivStyle-Glass"用于调用默认的毛玻璃效果--> | ||
Kawaii の 後藤栄次郎对社长さま的好感度:栄栄现在和你是好朋友,亲密度30%,淫乱度0%。<br> | ||
|
||
社长,网站nmd什么时候填词! | ||
</div> | ||
|
||
<script src="js/blig_had.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// 使用 fetch 动态加载 div | ||
fetch('../blig_had.html') | ||
.then(response => response.text()) | ||
.then(data => { | ||
document.getElementById('blig_had').innerHTML = data; | ||
}); |