├── README.md ├── img ├── 0.jpg ├── 1.jpg ├── 10.jpg ├── 11.jpg ├── 12.jpg ├── 13.jpg ├── 14.jpg ├── 15.jpg ├── 16.jpg ├── 17.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── 8.jpg └── 9.jpg ├── index.html ├── jquery-3.3.1.js └── style.css /README.md: -------------------------------------------------------------------------------- 1 | # Dialog 2 | 自定义封装dialog 弹窗插件 3 | 一款基于jquery的弹窗小demo 4 | -------------------------------------------------------------------------------- /img/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguangithub/dialog/15ee00af7024871ac594157b9b196ed5aab37cea/img/0.jpg -------------------------------------------------------------------------------- /img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguangithub/dialog/15ee00af7024871ac594157b9b196ed5aab37cea/img/1.jpg -------------------------------------------------------------------------------- /img/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguangithub/dialog/15ee00af7024871ac594157b9b196ed5aab37cea/img/10.jpg -------------------------------------------------------------------------------- /img/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguangithub/dialog/15ee00af7024871ac594157b9b196ed5aab37cea/img/11.jpg -------------------------------------------------------------------------------- /img/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguangithub/dialog/15ee00af7024871ac594157b9b196ed5aab37cea/img/12.jpg -------------------------------------------------------------------------------- /img/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguangithub/dialog/15ee00af7024871ac594157b9b196ed5aab37cea/img/13.jpg -------------------------------------------------------------------------------- /img/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguangithub/dialog/15ee00af7024871ac594157b9b196ed5aab37cea/img/14.jpg -------------------------------------------------------------------------------- /img/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguangithub/dialog/15ee00af7024871ac594157b9b196ed5aab37cea/img/15.jpg -------------------------------------------------------------------------------- /img/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguangithub/dialog/15ee00af7024871ac594157b9b196ed5aab37cea/img/16.jpg -------------------------------------------------------------------------------- /img/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguangithub/dialog/15ee00af7024871ac594157b9b196ed5aab37cea/img/17.jpg -------------------------------------------------------------------------------- /img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguangithub/dialog/15ee00af7024871ac594157b9b196ed5aab37cea/img/2.jpg -------------------------------------------------------------------------------- /img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguangithub/dialog/15ee00af7024871ac594157b9b196ed5aab37cea/img/3.jpg -------------------------------------------------------------------------------- /img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguangithub/dialog/15ee00af7024871ac594157b9b196ed5aab37cea/img/4.jpg -------------------------------------------------------------------------------- /img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguangithub/dialog/15ee00af7024871ac594157b9b196ed5aab37cea/img/5.jpg -------------------------------------------------------------------------------- /img/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguangithub/dialog/15ee00af7024871ac594157b9b196ed5aab37cea/img/6.jpg -------------------------------------------------------------------------------- /img/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguangithub/dialog/15ee00af7024871ac594157b9b196ed5aab37cea/img/7.jpg -------------------------------------------------------------------------------- /img/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguangithub/dialog/15ee00af7024871ac594157b9b196ed5aab37cea/img/8.jpg -------------------------------------------------------------------------------- /img/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguangithub/dialog/15ee00af7024871ac594157b9b196ed5aab37cea/img/9.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 10 | 11 | 12 |
13 |
14 |

点击图片查看效果

15 |
16 |
17 |
18 | 19 |
20 |
21 |
22 | 查看大图× 23 |
24 |
25 |
    26 |
  • 27 |
      28 |
    1. <
    2. 29 |
    3. >
    4. 30 |
    31 |
32 |
33 |

图片信息 mou

34 |
    35 | 36 |
37 |
38 | 39 | 1/2 40 | 41 |
42 |
43 |
44 |
45 |
46 | 191 | 192 | 193 | 194 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | *{ 2 | margin: 0; 3 | padding: 0; 4 | list-style: none; 5 | box-sizing: border-box; 6 | } 7 | .wrap{ 8 | width: 100%; 9 | height: auto; 10 | position: relative; 11 | } 12 | .tit{ 13 | width: 500px; 14 | height: auto; 15 | padding: 10px 10px; 16 | border: 1px solid #ccc; 17 | margin-left: 30px; 18 | } 19 | .img>img{ 20 | width: 100%; 21 | height: 300px; 22 | display: block; 23 | } 24 | .mark{ 25 | position: absolute; 26 | left: 0; 27 | top: 0; 28 | width: 100%; 29 | height: 1000px; 30 | background: #E0E0E0B1; 31 | display: none; 32 | } 33 | .mark_1{ 34 | width: 800px; 35 | height: auto; 36 | position: absolute; 37 | left: 50%; 38 | top: 50px; 39 | margin-left: -400px; 40 | border: 1px solid #ccc; 41 | padding-bottom: 10px; 42 | } 43 | .title{ 44 | width: 100%; 45 | height: auto; 46 | display: flex; 47 | justify-content: space-between; 48 | padding: 0 5px; 49 | background: #E2E2E2; 50 | } 51 | .content{ 52 | width: 100%; 53 | height: auto; 54 | display: flex; 55 | overflow: hidden; 56 | } 57 | .left{ 58 | flex: 8; 59 | padding: 2px 40px; 60 | height: 426px; 61 | position: relative; 62 | overflow: hidden; 63 | display: flex; 64 | } 65 | .left>ol{ 66 | width: 100%; 67 | height: auto; 68 | position: absolute; 69 | left: 0; 70 | top: 50%; 71 | display: flex; 72 | justify-content: space-between; 73 | padding: 0 5px; 74 | } 75 | .left>ol>li{ 76 | font-size: 50px; 77 | font-family: '楷体'; 78 | } 79 | .left>li>img{ 80 | width: 500px; 81 | height: 426px; 82 | display: block; 83 | } 84 | .right{ 85 | height: 426px; 86 | flex: 2; 87 | overflow: hidden; 88 | position: relative; 89 | } 90 | .imgList{ 91 | width: 100%; 92 | height: 300px; 93 | overflow: hidden; 94 | display: flex; 95 | justify-content: center; 96 | 97 | flex-wrap: wrap; 98 | border: 1px solid #ccc; 99 | } 100 | .imgList>li{ 101 | width: 48%; 102 | padding: 5px 5px; 103 | } 104 | .imgList>li>img{ 105 | width: 100%; 106 | height: 50px; 107 | display: block; 108 | } 109 | .right>form{ 110 | position: absolute; 111 | left: 50%; 112 | margin-left: -28px; 113 | bottom: 40px; 114 | } 115 | .current{ 116 | border: 1px solid red; 117 | height: 62px; 118 | } 119 | --------------------------------------------------------------------------------