当前位置: 首页 > news >正文

微信网站建设报价表网站文件夹权限

微信网站建设报价表,网站文件夹权限,英文WordPress站点切换为中文,设计学分类注意#xff1a;引入需要在主界面引入#xff0c;直接在组件中引用会有问题 1.安装 npm install vue-waterfall21.8.20 --save #xff08;提示#xff1a;一定要安装1.8.20#xff0c;最新版会有一部分问题#xff09; 2.打开main.js文件 import waterfall from v…注意引入需要在主界面引入直接在组件中引用会有问题 1.安装 npm install vue-waterfall21.8.20 --save    提示一定要安装1.8.20最新版会有一部分问题 2.打开main.js文件 import waterfall from vue-waterfall2 Vue.use(waterfall) 3.components新建 load.vue  复制粘贴 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 style scoped .loader-layer {   position: fixed;   left: 0;   top: 0;   right: 0;   bottom: 0;   background: white;   transition: all 0.6s;   opacity: 0;   -webkit-opacity: 0;   -o-opacity: 0;   -ms-opacity: 0;   -moz-opacity: 0;   visibility: hidden;   filter: alpha(opacity0); } .loader-layer.active {   visibility: visible;   opacity: 1;   -webkit-opacity: 1;   -o-opacity: 1;   -ms-opacity: 1;   -moz-opacity: 1;   filter: alpha(opacity100); } .spinner {   width: 120px;   height: 120px;   text-align: center;   line-height: 120px;   position: absolute;   left: 50%;   top: 50%;   transform: translate(-50%, -50%);   -webkit-transform: translate(-50%, -50%);   -o-transform: translate(-50%, -50%);   -ms-transform: translate(-50%, -50%);   -moz-transform: translate(-50%, -50%);   white-space: nowrap;   overflow: hidden; } .double-bounce1, .double-bounce2 {   width: 100%;   height: 100%;   border-radius: 50%;   background-color: #1abc9c;   opacity: 0.6;   position: absolute;   top: 0;   left: 0;   -webkit-animation: bounce 2s infinite ease-in-out;   animation: bounce 2s infinite ease-in-out; } .double-bounce2 {   -webkit-animation-delay: -1s;   animation-delay: -1s; } -webkit-keyframes bounce {   0%,   100% {     -webkit-transform: scale(0);   }   50% {     -webkit-transform: scale(1);   } } keyframes bounce {   0%,   100% {     transform: scale(0);     -webkit-transform: scale(0);   }   50% {     transform: scale(1);     -webkit-transform: scale(1);   } } keyframes loading {   from {     opacity: 0;   }   to {     opacity: 1;   } } /style template   div classloader-layer        :classshow?active:     div classspinner       div classdouble-bounce1/div       div classdouble-bounce2/divloading...     /div   /div /template script export default {   props: [show] }; /script 3.新建一个.vue的文件复制粘贴 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 style  langscss scoped .container-water-fall {   // padding: 0 28px;   box-sizing: border-box;   .water-content {     margin: 0 15px;   }   h4 {     padding-top: 56px;     padding-bottom: 28px;     font-family: PingFangSC-Medium;     font-size: 36px;     color: #000000;     letter-spacing: 1px;     text-align: justify;   }   button {     background-color: #ff0;     color: #24292e;     border: 1px solid rgba(27, 31, 35, 0.2);     border-radius: 0.25em;     width: 100px;     line-height: 26px;     font-size: 13px;     margin: 4px 0;     margin-right: 4px;     cursor: pointer;     outline: none;     .blue-light {       background: #27fbc2;     }   }   button:hover {     background-image: linear-gradient(-180deg, #fafbfc, #ccc 90%);   }   .cell-item {     width: 100%;     background: #ffffff;     overflow: hidden;     box-sizing: border-box;     border-radius: 6px;     margin-top: 10px;     img {       // border-radius: 12px 12px 0 0;       width: 100%;       height: auto;       display: block;     }     .item-body {       // border: 1px solid #F0F0F0;       padding: 12px;       .item-desc {         font-size: 15px;         color: #333333;         line-height: 15px;         font-weight: bold;       }       .item-footer {         margin-top: 22px;         position: relative;         display: flex;         align-items: center;         .avatar {           width: 44px;           height: 44px;           border-radius: 50%;           background-repeat: no-repeat;           background-size: contain;         }         .name {           max-width: 150px;           margin-left: 10px;           font-size: 14px;           color: #999999;         }         .like {           position: absolute;           right: 0;           display: flex;           align-items: center;           .active {             i {             }             .like-total {               color: #ff4479;             }           }           i {             width: 28px;             display: block;           }           .like-total {             margin-left: 10px;             font-size: 12px;             color: #999999;           }         }       }     }   } } .githubdata {   float: right;   margin-right: 90px;   img {     width: 14px;     // height: 16px;   } } /style template   div classcontainer-water-fall water-content     waterfall :colcol                :datadata                loadmoreloadmore       template         div classcell-item              v-for(item,index) in data              :keyindex           img v-ifitem.img                :srcitem.img                alt加载错误           div classitem-body             div classitem-desc{{item.title}}/div             div classitem-footer               div v-ifitem.avatar                    classavatar                    :style{backgroundImage : url(${item.avatar}) }/div               div classname{{item.user}}/div               div classlike                    :classitem.liked?active:                 i/i                 div classlike-total{{item.like}}/div               /div             /div           /div         /div       /template     /waterfall     loading :showloading /   /div /template script /*   注意:   1.itemWidth需要与gutterWidth一起使用才会生效否则会进行自适应宽度   2.使用了waterfall的组件不允许使用scoped,否则样式会有问题 */ import loading from /components/load; export default {   props: {     title: String   },   components: {     loading   },   data() {     return {       data: [],       col: 2,       loading: false,       gitHubData: {},       originData: [         {           img:             https://image.watsons.com.cn//upload/8a316140.png?w377h451x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 最近浴室新宠日系神仙好物了解一下,           user: www,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/083767f0.JPG?w828h620x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 150元搞定全套护肤品这些护肤好物必须交出来,           user: 迷人的小妖精迷人的小妖精,           like: 952         },         {           img:             https://image.watsons.com.cn//upload/02a4f38d.jpg?w1067h1067x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 最近浴室新宠日系神仙好物了解一下,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/589585c1.jpeg?x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 150元搞定全套护肤品这些护肤好物必须交出来,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/d862d932.jpg?w1080h1440x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 最近浴室新宠日系神仙好物了解一下,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/eb4fb58f.jpg?w1080h1080x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 150元搞定全套护肤品这些护肤好物必须交出来,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/71d19462.jpg?x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title:             贵妇级好用的水乳有哪些呢千万不要去乱尝试贵妇级好用的水乳有哪些呢,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/415f984f.jpeg?w828h1104x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 千万不要去乱尝试贵妇级好用的水乳有哪些呢千万不要去乱尝试,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/5c3e51e4.jpg?w720h960x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 夏天用这款姨妈巾让你体验真正的清爽,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/92761043.JPG?w1000h999x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 最近浴室新宠日系神仙好物了解一下,           user: 迷人的小妖精迷人的小妖精123,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/da61c0f5.jpg?w959h958x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 千万不要去乱尝试贵妇级好用的水乳有哪些呢千万不要去乱尝试,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/fcd68df4.jpg?w1080h1080x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 最近浴室新宠日系神仙好物了解一下,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/bef41e67.JPG?w712h534x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 夏天用这款姨妈巾让你体验真正的清爽,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/25ab20fe.JPG?w1000h1200x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 150元搞定全套护肤品这些护肤好物必须交出来,           user: 迷人的小妖精迷人的小妖精123,           like: 953         },         {           img:             https://ci.xiaohongshu.com/eb971d00-05ab-5b2a-ba03-52d8f544c42b?imageView2/2/w/400/q/50/format/jpg,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 最近浴室新宠日系神仙好物了解一下,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/4a3c1788.jpg?w823h1000x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 夏天用这款姨妈巾让你体验真正的清爽,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/0a89e6b7.jpg?w1080h1920x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 千万不要去乱尝试贵妇级好用的水乳有哪些呢千万不要去乱尝试,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/99253111.jpg?w1080h1920x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 150元搞定全套护肤品这些护肤好物必须交出来,           user: 迷人的小妖精迷人的小妖精123,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/13afe9a7.jpg?x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title:             贵妇级好用的水乳有哪些呢千万不要去乱尝试贵妇级好用的水乳有哪些呢千万不要去乱尝试贵妇级好用的水乳有哪些呢千万不要去乱尝试,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/98c7c4c3.jpg?w1210h1210x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 150元搞定全套护肤品这些护肤好物必须交出来,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/54c5d7b4.jpg?w828h991x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 150元搞定全套护肤品这些护肤好物必须交出来,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/71d19462.jpg?x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 夏天用这款姨妈巾让你体验真正的清爽,           user: 迷人的小妖精迷人的小妖精123,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/642cb83c.jpeg?w1080h1080x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 150元搞定全套护肤品这些护肤好物必须交出来,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/31e42833.jpg?w750h750x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 150元搞定全套护肤品这些护肤好物必须交出来,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/92761043.JPG?w1000h999x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 夏天用这款姨妈巾让你体验真正的清爽,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/60cc9b8e.jpg?w991h744x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 150元搞定全套护肤品这些护肤好物必须交出来,           user: 迷人的小妖精迷人的小妖精123,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/b709ed72.jpg?w552h414x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 最近浴室新宠日系神仙好物了解一下,           user: 迷人的小妖精迷人的小妖精,           like: 953         },         {           img:             https://image.watsons.com.cn//upload/137b50b0.jpg?x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 夏天用这款姨妈巾让你体验真正的清爽,           user: 迷人的小妖精迷人的小妖精,           like: 952         },         {           img:             https://image.watsons.com.cn//upload/31e42833.jpg?w750h750x-oss-processimage/resize,w_1080,           avatar:             https://img.xiaohongshu.com/avatar/5b7d198a7e6e15000155f7c9.jpg80w_80h_90q_1e_1c_1x.jpg,           title: 最近浴室新宠日系神仙好物了解一下,           user: 迷人的小妖精迷人的小妖精,           like: 953         }       ]     };   },   computed: {     itemWidth() {       return 133 * 0.5 * (document.documentElement.clientWidth / 375);     },     gutterWidth() {       return 10 * 0.5 * (document.documentElement.clientWidth / 375);     }   },   methods: {     toGitHub() {       window.open(         https://github.com/Rise-Devin/vue-waterfall2/blob/master/README.md,         _blank       );     },     reset() {       this.data [];     },     switchCol(col) {       this.col col;     },     loadmore() {       console.log(9999)       this.loading true;       setTimeout(() {         this.data this.data.concat(this.originData, this.originData);         this.loading false;       }, 1000);     }   },   mounted() {     console.log(cascadeShow)     this.data this.originData;   } }; /script 总结问题 1. 本人下载vue-waterfall2  1.9.0版本插件设定了高度导致插件内容可以滚动如果在插件上面加入banner或者其他内容不会随着屏幕的滚动而滚动, 2. body ,head { height: 100%; } bodyhead 高度100%会导致页面滑动到最后的时候监听不到滚动底部的事件一定要保证页面css样式不能冲突
http://www.zqtcl.cn/news/890047/

相关文章:

  • 网站建设 保密学服装设计后悔了
  • 网站建设前端和后端网站开发所遵循的
  • 有自己域名的个人网站企业网站建设制作公司
  • 工程行业网站优化网站推广排名
  • 青岛网站建设软件下载广州app网站建设
  • 天津市建设厅官方网站qq电脑版登录
  • 贵阳手机网站建设公司辽源网站建设
  • 淄博网站设计制作wordpress 纯静态首页
  • 规划电子商务网站流程福清建设局网站简介
  • 使用joomla的网站网络营销师资格证有什么用
  • 做经营网站怎么赚钱吗关于做网站的合同
  • 上海手机网站建设哪家好重庆景点
  • 做网站菜单背景图片wordpress伪原创词库
  • 网络维护工程师工资多少聊城哪里做优化网站
  • 网站开发用什么字体查询域名备案
  • 济南品牌网站建设公司网站单个页面紧张搜索引擎蜘蛛
  • 公司需要一个简单的网站包头网站建设奥北
  • 怎么制作网站导航页新手做网站详细步骤
  • 自己个人网站后台怎么做wordpress多程序用户同步
  • 赣州网联科技有限公司wordpress安装后优化
  • 二手书的网站建设做设计在哪个网站找图片大全
  • 网站seo设计北京市建设投标网站
  • 承德做网站设计的网络推广主要内容
  • 婚纱网站源代码重庆网站定制公司
  • 同一个ip网站太多 seo应用商店网站源码
  • 网站内容框架首页>新闻>正文 网站怎么做
  • 网站制作 搜索做效果图网站有哪些
  • 网站建设的相关技术网站的购物车怎么做
  • 免费建设公司网站腾讯云域名购买
  • 淘宝客网站应该怎么做网页浏览器推荐