切换风格

默认晚霞 雪山 粉色心情 伦敦 花卉 绿野仙踪 加州 白云 星空 薰衣草 城市 简约黑色 简约米色 龙珠
回复 0

3795

主题

3795

帖子

1万

积分

论坛元老

Rank: 8Rank: 8

积分
12607
随机二次元图片幻灯片效果代码[复制链接]
发表于 2022-6-14 21:17:36 | 显示全部楼层 |阅读模式
演示效果
211736wy3272d05hwddinu.jpg
方法一:修改网页头部(推荐)
在网站有一个统一的header头部文件时,使用该方法把下面代码插入后即可。

<body>

<style>

      html,

      body {

              margin: 0;

              width: 100%;

              height: 100%;

      }

</style>

<div id="dynamic-background" style="width: 100%; height: 100%; position: fixed;z-index: -1;">

      <script>

              window.addEventListener("load", function(e){

                    document.getElementById("dynamic-background").innerHTML = '<iframe src="https://tuapi.eees.cc/acgPicPPTShow/" width="100%" height="100%" style="border: 0;"></iframe>';

                         });

</script>

</div>

</body>
复制代码



方法二:在网页任意位置添加js代码
使用该方法只需把下方js代码放在网页任意位置(放在html里时注意添加script标签),甚至放在全局js文件里都行

window.addEventListener("load", function(e){

      var obj = document.createElement("div");

      obj.style = "width:100%; height:100%; position:fixed; z-index:-1;";

      obj.innerHTML= '<iframe src="https://tuapi.eees.cc/acgPicPPTShow/" width="100%" height="100%" style="border: 0;"></iframe>';

      var first = document.body.firstChild;

      document.body.insertBefore(obj,first);

});
复制代码


API地址:https://tuapi.eees.cc/
演示地址:https://tuapi.eees.cc/ccoo/2020-10-8.html
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|不懂 ( 粤ICP备14042591号-1 )|网站地图

GMT+8, 2024-11-22 02:37 , Processed in 0.067479 second(s), 30 queries .

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

返回顶部