- 博客(10)
- 收藏
- 关注
原创 西游记西天取经场景小动画
西游记西天取经场景img提取提取码:xyqjcss样式* { padding: 0; margin: 0; list-style: none; } html,body { height: 100%; } .main { height: 100%; width: 100%; -webkit-background-size: cover; background-size: cover; overflow: hidden; position: relati
2021-01-19 21:59:30 507
原创 爬楼梯
css代码* { margin: 0; padding: 0;}#menu { position: fixed; top: 25%; left: 40px; width: 30px; border: 1px solid;}#menu ul li { position: relative; width: 30px; height: 30px; list-style: none; text-align:
2021-01-18 21:49:37 103 1
原创 原生ajax封装
function $ajax(obj) { var type = obj.type || "GET"; var url = obj.url; var data = url.data; var query = ""; for (let key in data) { query += `${key}=${data[key]}&` } query = query.substr(0, query.length - 1) if
2021-01-18 19:43:08 128 1
原创 手机验证码发送渲染
css样式<style type="text/css"> .container{ width:40%; margin: 0 auto; padding: 20px; } .myinput{ width: 400px; height: 40px; border-radius: 5px; border: 1px solid #999999; } .yzm{ width: 300px; margin
2021-01-12 20:57:36 174 1
原创 ajax请求
get实例var xhr = new XMLHttpRequest();xhr.open('GET', '/api/user?id=333', true);xhr.send();xhr.onreadystatechange = function (e) { if (xhr.readyState == 4 && xhr.status == 200) { console.log(xhr.responseText); }};post实例var xhr = new
2021-01-10 18:32:24 75
原创 javascript面向对象中继承实现?
在JavaScript中实现继承的方法:原型链(prototype chaining)call()/apply()混合方式(prototype和call()/apply()结合)对象冒充继承的方法如下:1、prototype原型链方式:function car(price){ this.price = price;}car.prototype.sayPrice = function(){ console.log("Price is "+this.price);}va
2020-12-27 19:57:02 152 1
原创 HTTP与HTTPS的区别及HTTP状态码
HTTP与HTTPS的区别HTTP的URL由 http://起始且默认使用端口80,而HTTPS的URL由 https://起始且默认使用端口443HTTP是超文本传输协议,信息是明文传输,HTTPS则是具有安全性的 SSL 加密传输协议HTTP的连接很简单,是无状态的,HTTPS 协议是由 SSL+HTTP 协议构建的可进行加密传输、身份认证的网络协议,比 http 协议安全HTTP状态码1xx表示客户端应该继续发送请求2xx表示成功的请求200表示OK,正常返回信息201表示请求成功且服
2020-12-23 21:53:52 323
原创 pc常见端兼容性问题
pc常见端兼容性问题1、IE8 下面的 png 图片无法正常显示?原因:打开调试面板,你会发现 IE8 浏览器把 PNG 格式的 img 解析成了 span 标签,导致图无法显示。解决方案:在样式里面对 span 设置宽高和 display:inline-block;即可。2、rgba 不支持 IE8?解决方案:可以用 opacityopacity:0.7;/FF chrome safari opera/filter:alpha(opacity:70);/用了 ie 滤镜,可以兼容 ie/
2020-12-22 08:26:15 594 1
原创 添加删除
css <style> .content { width: 50%; margin: 0 auto; background-color: wheat; padding: 20px; } h1 { text-align: center; color: #fff; }
2020-12-18 21:50:46 128 2
原创 git版本管理工具
Day 00git版本管理工具版本库本地远程安装第一步:下载git 软件 – 安装软件 默认目录第二步:鼠标右键 git bash第三步:验证 是否安装成功 查看git 版本 git --version 第四步:全局配置用户名和邮箱 git config --global user.name "姓名" git config --global user.email "xx@163.com"本地操作第一步:创建文件夹(右键 / mkdir 文件夹)第二步:进入目录
2020-12-14 16:49:54 160 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人