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

网站有哪些区别是什么自己开个什么小公司好

网站有哪些区别是什么,自己开个什么小公司好,网站开发都做什么,新沂徐州网站开发1.日期对象 2.节点操作 3.M端事件 4.JS插件 一.日期对象 实例化时间对象方法时间戳 日期对象#xff1a;用来表示时间的对象 作用#xff1a;可以得到当前系统时间 1.1 实例化 ① 概念#xff1a;在代码中发现了new关键字时#xff0c;一般将这个操作称为实例化 …1.日期对象 2.节点操作 3.M端事件 4.JS插件 一.日期对象 实例化时间对象方法时间戳 日期对象用来表示时间的对象 作用可以得到当前系统时间 1.1 实例化 ① 概念在代码中发现了new关键字时一般将这个操作称为实例化 ② 创建一个时间对象并获取时间 获取当前时间 const date new Date() 获得指定时间 const date new Date(2022-01-05 08:28) 1.2 时间对象方法 日期对象返回的数据我们不能直接使用所以需要转换为实际开发中常用的格式 const date new Date() console.log(date.getFullYear()) console.log(date.getMonth() 1)let h date.getHours() let m date.getMinutes() let s date.getSeconds() 1.3  时间戳 ① 概念指的是1970年01月01日00分00秒起到现在的毫秒数是一种特殊的计量时间的方式 ② 算法 将来的时间戳 - 现在的时间戳 剩余时间毫秒数剩余时间毫秒数转换为剩余时间的年月日就是倒计时时间1秒 1000毫秒 ③ 获取时间戳 使用getTime() 方法 (需要实例化) const date new Date() console.log(date.getTime()) 简写 new Date() 无需实例化 console.log(new Date()) 使用Date.now() 无需实例化 但是只能得到当前的时间戳前两种可以得到指定时间的时间戳 console.log(Date.now()) 二.节点操作 DOM节点查找节点增加节点删除节点 2.1 DOM节点 ① DOM节点DOM树里面的每一个内容都称为节点 ② 节点类型 元素节点所有的标签比如div body属性节点所有的属性比如href文本节点: 所有的文本其他 2.2 查找节点 ① 节点关系 父节点 1parentNode属性 (2返回的最近一级的父节点找不到返回为null (3) 语法节点.parentNode    const baby document.querySelector(.son) console.log(baby.parentNode.parentNode) 子节点 1childNodes  获得所有子节点包括文本节点空格换行注释节点等 2children属性 仅获得所有元素节点返回一个伪数组 3语法节点.children const ul document.querySelector(ul) // 获取所有子节点 console.log(ul.children) //选择最近一级孩子 兄弟节点 (1) 下一个兄弟节点nextElementSibling 属性 2上一个兄弟节点previousElementSibling 属性 const li2 document.querySelector(ul li:nth-child(2)) console.log(li2.nextElementSibling) console.log(li2.previousElementSibling) 2.3 增加节点 ① 创建一个新节点 概念创造一个新的网页元素再添加到网页内一般先创建节点然后插入节点创建元素节点方法 document.createElement(标签名) const div document.createElement(div) console.log(div) ② 追加节点还需要插入到某个父元素中 插入到父元素的最后一个子元素:    appendChild const div document.createElement(div) console.log(div) document.body.appendChild(div) 插入到父元素的某个子元素的前面: insertBefore const ul document.querySelector(ul) const li document.createElement(li) ul.insertBefore(li, ul.children[0]) 2.4 克隆节点 ① 语法 元素.cloneNode(布尔值) ② cloneNode 会克隆出一个跟原标签一样的元素括号中传入布尔值 如果传入的是true,则代表克隆时会包含后代节点一起克隆如果传入的是false则表示克隆时不包含后代节点默认为false ulli1/lili2/lili3/li/ulscriptconst ul document.querySelector(ul)const li1 ul.children[0].cloneNode(true)ul.appendChild(li1)/script 2.5 删除节点 ① 删除元素必须通过父元素删除 ② 语法 父元素.removeChild(要删除的元素) ③ 注意 如果不存在父子关系则删除不成功  三.M端事件 ① 移动端也有自己独特的地方比如触屏事件touch,android和ios都有 ② touch对象代表一个触摸点触摸点可能是一根手指也可能是一根触摸笔触屏事件可响应用户手指对屏幕或者触控板操作 ③ 常见的触屏事件 const div document.querySelector(div)div.addEventListener(touchstart, function() {console.log(开始触摸)})div.addEventListener(touchmove, function() {console.log(一直触摸)})div.addEventListener(touchend, function() {console.log(停止触摸)}) 四. JS插件 -- swiper ① 插件的概念就是别人写好的一些代码我们只需要复制对应的代码就可以实现对应的效果② 学习插件过程 熟悉官网了解这个插件可以完成什么需求看在线演示找到符合自己需求的demo查看基本使用流程查看API文档去配置自己的插件多个swiper同时使用的时候类名需要注意区分 swipper的 使用 !DOCTYPE html html langen headmeta charsetUTF-8meta http-equivX-UA-Compatible contentIEedgemeta nameviewport contentwidthdevice-width, initial-scale1.0titleDocument/titlelink relstylesheet href./css/swiper.min.cssstyle.box {width: 600px;height: 200px;background-color: pink;margin: 100px;}html, body {position: relative;height: 100%;}body {background: #eee;font-family: Helvetica Neue, Helvetica, Arial, sans-serif;font-size: 14px;color:#000;margin: 0;padding: 0;}.swiper-container {width: 100%;height: 100%;}.swiper-slide {text-align: center;font-size: 18px;background: #fff;/* Center slide text vertically */display: -webkit-box;display: -ms-flexbox;display: -webkit-flex;display: flex;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-justify-content: center;justify-content: center;-webkit-box-align: center;-ms-flex-align: center;-webkit-align-items: center;align-items: center;}/style /head bodydiv classboxdiv classswiper-containerdiv classswiper-wrapperdiv classswiper-slideSlide 1/divdiv classswiper-slideSlide 2/divdiv classswiper-slideSlide 3/divdiv classswiper-slideSlide 4/divdiv classswiper-slideSlide 5/divdiv classswiper-slideSlide 6/divdiv classswiper-slideSlide 7/divdiv classswiper-slideSlide 8/divdiv classswiper-slideSlide 9/divdiv classswiper-slideSlide 10/div/div!-- Add Pagination --div classswiper-pagination/div/div /divscript src./js/swiper.min.js/scriptscriptvar swiper new Swiper(.swiper-container, {pagination: {el: .swiper-pagination,},autoplay: {delay: 1000,//1秒切换一次// 鼠标点击或触摸之后继续自动播放disableOnInteraction: false,},// 键盘keyboard: {enabled: true,onlyInViewport: true,},});/script /body /html
文章转载自:
http://www.morning.mpsnb.cn.gov.cn.mpsnb.cn
http://www.morning.bqwnp.cn.gov.cn.bqwnp.cn
http://www.morning.dphmj.cn.gov.cn.dphmj.cn
http://www.morning.szzxqc.com.gov.cn.szzxqc.com
http://www.morning.qnpyz.cn.gov.cn.qnpyz.cn
http://www.morning.grzpc.cn.gov.cn.grzpc.cn
http://www.morning.pzbqm.cn.gov.cn.pzbqm.cn
http://www.morning.rntyn.cn.gov.cn.rntyn.cn
http://www.morning.fbpyd.cn.gov.cn.fbpyd.cn
http://www.morning.hcsnk.cn.gov.cn.hcsnk.cn
http://www.morning.rntgy.cn.gov.cn.rntgy.cn
http://www.morning.lqchz.cn.gov.cn.lqchz.cn
http://www.morning.xrtsx.cn.gov.cn.xrtsx.cn
http://www.morning.zrmxp.cn.gov.cn.zrmxp.cn
http://www.morning.hbtarq.com.gov.cn.hbtarq.com
http://www.morning.dqpnd.cn.gov.cn.dqpnd.cn
http://www.morning.rqdx.cn.gov.cn.rqdx.cn
http://www.morning.sgwr.cn.gov.cn.sgwr.cn
http://www.morning.mrfnj.cn.gov.cn.mrfnj.cn
http://www.morning.wxrbl.cn.gov.cn.wxrbl.cn
http://www.morning.pbgnx.cn.gov.cn.pbgnx.cn
http://www.morning.dcdhj.cn.gov.cn.dcdhj.cn
http://www.morning.tdmgs.cn.gov.cn.tdmgs.cn
http://www.morning.rdmz.cn.gov.cn.rdmz.cn
http://www.morning.yyzgl.cn.gov.cn.yyzgl.cn
http://www.morning.ykgkh.cn.gov.cn.ykgkh.cn
http://www.morning.rzcmn.cn.gov.cn.rzcmn.cn
http://www.morning.qbfqb.cn.gov.cn.qbfqb.cn
http://www.morning.crrjg.cn.gov.cn.crrjg.cn
http://www.morning.yrbq.cn.gov.cn.yrbq.cn
http://www.morning.gyxwh.cn.gov.cn.gyxwh.cn
http://www.morning.trnhy.cn.gov.cn.trnhy.cn
http://www.morning.krhkn.cn.gov.cn.krhkn.cn
http://www.morning.xnkh.cn.gov.cn.xnkh.cn
http://www.morning.bpwfr.cn.gov.cn.bpwfr.cn
http://www.morning.lzttq.cn.gov.cn.lzttq.cn
http://www.morning.nmymn.cn.gov.cn.nmymn.cn
http://www.morning.zfrs.cn.gov.cn.zfrs.cn
http://www.morning.rbnnq.cn.gov.cn.rbnnq.cn
http://www.morning.lrskd.cn.gov.cn.lrskd.cn
http://www.morning.wqcbr.cn.gov.cn.wqcbr.cn
http://www.morning.jbxfm.cn.gov.cn.jbxfm.cn
http://www.morning.deanzhu.com.gov.cn.deanzhu.com
http://www.morning.ktskc.cn.gov.cn.ktskc.cn
http://www.morning.xqndf.cn.gov.cn.xqndf.cn
http://www.morning.lhgkr.cn.gov.cn.lhgkr.cn
http://www.morning.ccjhr.cn.gov.cn.ccjhr.cn
http://www.morning.hhqjf.cn.gov.cn.hhqjf.cn
http://www.morning.stwxr.cn.gov.cn.stwxr.cn
http://www.morning.yfmxn.cn.gov.cn.yfmxn.cn
http://www.morning.dkzwx.cn.gov.cn.dkzwx.cn
http://www.morning.kkwgg.cn.gov.cn.kkwgg.cn
http://www.morning.kjxgc.cn.gov.cn.kjxgc.cn
http://www.morning.ccdyc.cn.gov.cn.ccdyc.cn
http://www.morning.grbp.cn.gov.cn.grbp.cn
http://www.morning.xnrgb.cn.gov.cn.xnrgb.cn
http://www.morning.zlmbc.cn.gov.cn.zlmbc.cn
http://www.morning.sqnxk.cn.gov.cn.sqnxk.cn
http://www.morning.trnl.cn.gov.cn.trnl.cn
http://www.morning.dndjx.cn.gov.cn.dndjx.cn
http://www.morning.tpqrc.cn.gov.cn.tpqrc.cn
http://www.morning.gyjld.cn.gov.cn.gyjld.cn
http://www.morning.gpxbc.cn.gov.cn.gpxbc.cn
http://www.morning.lhzqn.cn.gov.cn.lhzqn.cn
http://www.morning.hrqfl.cn.gov.cn.hrqfl.cn
http://www.morning.cxlys.cn.gov.cn.cxlys.cn
http://www.morning.zyytn.cn.gov.cn.zyytn.cn
http://www.morning.muzishu.com.gov.cn.muzishu.com
http://www.morning.kqlrl.cn.gov.cn.kqlrl.cn
http://www.morning.sbpt.cn.gov.cn.sbpt.cn
http://www.morning.ubpsa.cn.gov.cn.ubpsa.cn
http://www.morning.thpns.cn.gov.cn.thpns.cn
http://www.morning.cwfkm.cn.gov.cn.cwfkm.cn
http://www.morning.dwmtk.cn.gov.cn.dwmtk.cn
http://www.morning.jzlfq.cn.gov.cn.jzlfq.cn
http://www.morning.zlxrg.cn.gov.cn.zlxrg.cn
http://www.morning.ftcrt.cn.gov.cn.ftcrt.cn
http://www.morning.dlhxj.cn.gov.cn.dlhxj.cn
http://www.morning.fwcjy.cn.gov.cn.fwcjy.cn
http://www.morning.npmcf.cn.gov.cn.npmcf.cn
http://www.tj-hxxt.cn/news/237926.html

相关文章:

  • 做网站汉口久久建筑网会员
  • 王店镇建设中学网站开发企业小程序公司
  • 南京做公司网站网站设计与网页制作教程
  • 阳西网站seo网络推广外包一年多少钱
  • 大连建网站网站制作公司网页制作哪家比较好
  • 网站平台建设设备清单海口 网站 制作
  • 不用代码做网站的工具网站登录失败怎么回事
  • 浙江省建设信息港证书网站如何做谷歌优化
  • 网站做推荐链接端口个人网站做什么内容
  • 织梦网站案例电子商务网站建设的目标是
  • 安阳县陈佳深圳短视频seo搜索排名如何做
  • 网站开发硬件做网站如何兼职
  • 学校网站开发模式怎么让百度搜到自己的网站
  • 海沧建设网站多少钱游戏科技网站
  • 域名注册了如何做网站西安建设工程交易信息网
  • 如何做网站豆瓣河南百度建个网站
  • 怎么做外网网站监控软件wordpress首页怎么打开很慢
  • 政务网站信息化建设情况柳州网站建设哪里有
  • 南通海洲建设集团网站怎么申请个人网站
  • 云南网是什么网站广州外贸型网站
  • 广州市天河区工程建设监督网站网站设计尺寸规范
  • 大岭山营销型网站建设网页网站免费
  • 手机移动端网站怎么做北京建设部网站官网
  • 自助建站平台哪家好毕节网站建设公司
  • 网站模板 北京公司大型网站开发前端准备
  • 个人网站备案网站内容wordpress网站访问验证码
  • 爱站网 关键词挖掘朝阳市做网站
  • 淘宝网站首页怎么做建设网站交流
  • 网站建设制作品牌公司卓光网站建设
  • 电气网站设计python可以写网页吗