-
Notifications
You must be signed in to change notification settings - Fork 0
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
94e761d
commit 2424e7f
Showing
4 changed files
with
31 additions
and
21 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
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* @Date: 2024-01-19 16:40:54 | ||
* @LastEditors: Night-stars-1 [email protected] | ||
* @LastEditTime: 2024-02-03 20:28:29 | ||
* @LastEditTime: 2024-02-04 19:08:37 | ||
*/ | ||
const separator_ele = document.createElement("div"); | ||
separator_ele.innerHTML = /*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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
/* | ||
* @Date: 2024-01-26 17:29:07 | ||
* @LastEditors: Night-stars-1 [email protected] | ||
* @LastEditTime: 2024-02-02 19:24:06 | ||
* @LastEditTime: 2024-02-04 18:02:30 | ||
*/ | ||
async function setVideoBackGround(location) { | ||
const setting_data = (await qqpromote.getSettings()).setting; | ||
if (setting_data.video_background[location.hash]?.value && !document.querySelector(".qqpromote_video")){ | ||
document.body.insertAdjacentHTML('afterbegin', ` | ||
document.body.insertAdjacentHTML('afterbegin', /*html*/` | ||
<video class="qqpromote_video" autoplay muted loop> | ||
<source src="local:///H:/Download/Video/83122.mp4" type="video/mp4"> | ||
<source src="local:///C:/Users/Administrator/Videos/动漫/[Airota][Majo no Tabitabi][BDRip 1080p HEVC-10bit FLAC ASS]/[Airota][Majo no Tabitabi][02][BDRip 1080p HEVC-10bit FLAC ASS].mkv" type="video/mp4"> | ||
</video> | ||
`);// <div class="qqpromote_video_overlay"></div> | ||
|