
前端
文章平均质量分 57
LVtomatoJ
这个作者很懒,什么都没留下…
展开
-
[h5年度报告]1.3设置html页面背景,完善登录页面
这一节我们设置一个页面背景之后完成登录验证的界面!一、页面背景页面背景需要我们在网上下载一个图片关于无版权图片可以再pixabay下载下载好后在项目目录新建upload文件夹把下载下来的图片更改为bg.xxx放进去然后我们只需要在swiper-slide中加入backgroud和background-size即可 .swiper-slide{ width:100%; height:100%; background: url("...原创 2021-08-27 09:23:11 · 1463 阅读 · 0 评论 -
[h5年度报告] 1.2使用 swiper和swiper anime实现简单h5滑动动画页面
下载准备:swiper3.0.6:swiper.min.js和swiper.min.css 下载地址swiper animate:animate.min.js和animate.min.css 下载地址下载好上述两组文件后解压,在index.html所在目录分别创建css和js文件夹,将下载的四个文件放入对应文件夹中。一、引入与配置在head中加入以下代码引入下载的文件 <link rel="stylesheet" href="css/swiper.mi...原创 2021-08-12 22:48:55 · 1723 阅读 · 1 评论 -
[h5年度报告] 1.1用python实现简单的web服务端
此处默认配置好python3环境并默认使用pycharm进行开发参考地址:http.serverimport http.serverimport socketserverPORT = 8000Handler = http.server.SimpleHTTPRequestHandlerwith socketserver.TCPServer(("", PORT), Handler) as httpd: print("serving at port", PORT) http原创 2021-08-12 20:51:29 · 381 阅读 · 0 评论 -
onloadwff.js: Cannot read property ‘querySelectorAll‘of null
报错信息:onloadwff.js:71 Uncaught (in promise) TypeError: Cannot read property 'querySelectorAll' of null解决方法:将embed标签删除原创 2021-05-29 13:16:51 · 824 阅读 · 0 评论