SimpleNoviceGuide实现新手引导教学图层效果代码

代码语言:html

所属分类:弹出层

代码描述:SimpleNoviceGuide实现新手引导教学图层效果代码

代码标签: SimpleNoviceGuide 新手 引导 教学 图层

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en">

<head>
   
<meta charset="UTF-8">
   
<meta http-equiv="X-UA-Compatible" content="IE=edge">
   
<meta name="viewport" content="width=device-width, initial-scale=1.0">

   
<style>
        body {
            overflow: hidden;
        }

        #box {
            position: fixed;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            overflow: auto;
            padding: 20px;
        }

        #box0 {
            width: 500px;
            height: 300px;
            border: 2px solid navajowhite;
            margin-bottom: 20px;
        }

        #box1 {
            width: 1000px;
            height: 1000px;
            border: 2px solid aqua;
            margin-bottom: 20px;
        }

        #box2 {
            width: 1000px;
            height: 500px;
            overflow: auto;
            border: 2px solid blueviolet;
            padding: 20px;
        }

        #box3 {
            width: 90%;
            height:.........完整代码请登录后点击上方下载按钮下载查看

网友评论0