版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、项目1类的应用divwidth:60px;height:60px;background-color: #7FFF00;border-radius: 50%; float:left; margin-left: 10px;/div显示出来前面的不能加./类定义前面加.boxwidth:372px; height:494px ;overflow: hidden;position: relative;top: 60px;left:50%/box是盒子只能放一张图片 overflow 多余超出隐藏 position 相对父级移动的位置 图片的位置居中.click span float:left;marg
2、in-left: 10px;margin-right: 10px; width:10px;height: 10px;background-color: red;border-radius: 50%;overflow: hidden;position: relative;top: 60px;left:50%;/span是点.click span定义了一个类 也是一个框架框起来作用 margin-left right 是相对于页面的上下左右的变化彼此之间的距离/div 和span 加上浮动都是一样的标签 /一个父级框起来可以一起定义效果$(img).hide()/一开始没有图像$(span:eq(
3、0).click(function()$(img:eq(0).show()$(img:eq(0).siblings().hide()$(this).css(backgroundColor:yellow)$(this).siblings().css(backgroundColor:red)/this相对应的是最外面()里的span)$(span:eq(1).click(function()$(img:eq(1).show()$(img:eq(1).siblings().hide()$(this).css(backgroundColor:yellow)$(this).siblings().css(
4、backgroundColor:red)$(span:eq(2).click(function()$(img:eq(2).show()$(img:eq(2).siblings().hide()$(this).css(backgroundColor:yellow)$(this).siblings().css(backgroundColor:red)$(span:eq(3).click(function()$(img:eq(3).show()$(img:eq(3).siblings().hide()$(this).css(backgroundColor:yellow)$(this).sibling
5、s().css(backgroundColor:red)$(span:eq(4).click(function()$(img:eq(4).show()$(img:eq(4).siblings().hide()$(this).css(backgroundColor:yellow)$(this).siblings().css(backgroundColor:red)项目2 Css的应用.text1 background-color:white;.text1 figcaption padding:20px;.text1 figcaption pbackground-color:#FFF;margin
6、 3px;text-align: center; padding:0 10px; transform: translate(-120px,0px);.text1 p:nth-of-type(1)transition-delay:0.3s;.text1 p:nth-of-type(2)transition-delay:0.8s;.text1 p:nth-of-type(3)transition-delay:1.3s;.text1:hover ptransform: translate(0,0);.text1:hoverimgopacity:0.5;transform:translate(-50p
7、x,0);/css层叠样式 引用一个text类定义就包括了所有的动效/text1 是声明 这些是写在body里面的第一标题 图片注解 图片注解 图片注解/figure是父级包括了figcaption.box5background-color:blanchedalmond ;.boxheight: 100px;.box2background-color:blanchedalmond ;.box3 font-size:50px;.box5background-color:blanchedalmond ;文字$(.box5).css(color:red,fontSize: 34)/新定义css样式项
8、目3$(div).width();/width宽度()没写是捕获 写了是设置document.title=$(div).width()/document 头部内容是用来检测变化的$(div).height();/height 高度document.title=$(div).height() helloworld/padding 内边距 padding-top 从上往下 hin 细线 medium 中粗线 thick 粗线 边框类型 none 无边框 dotted 点组成 dashed 由短线 solid 实线 double 双线 groove 3d沟槽 颜色$(div).outerHeight
9、();/包含填充padding 和边框document.title=$(div).outerHeight()heoworld/margin 外边距 margin “20px 40px” top bottom20px right left 40px 20 40 60 80 top right bottom left$(div).outerHeight(true);/true 填充 边框 边界都包含document.title=$(div).outerHeight(true) helloworld$(div).innerHeight(true);/innerHeight 带padding值的高度d
10、ocument.title=$(div).innerHeight(true)项目4/JS 声明类型 不需要调用库 直接输出就可以 用于if语句 轮播 函数类型 var i=1/ VAR 和变量之间要有空格 var 变量名=数值i=i+1document.title=ialert(hello)/弹窗var a=confirm(are your sure?)/布尔 TRUE falsedocument.title=a;var b=prompt(please input your name, 0);/可输入文本 字符用引号包含document.title=your name are+b;/运行从上往
11、下 变量运算 + - * / 比较运算 = != =项目5alert(hello)var a=confirm(are your sure?)var b=prompt(please input your chronically age)if(b=18)/if (布尔值 true会显示 false 不会显示)document.title=you are + b+ years old/空格在引号中elsedocument.title=you are too young /语句后不能加分号 分号在外可以加项目6document.getElementById(box).style.height=100p
12、xdocument.getElementById(box).style.width=100pxdocument.getElementById(box).style.backgroundColor=blanchedalmond#boxwidth: 372px;height: 494px;/必须定义style盒子图片 捕获样式/类调用var i=prompt(请输入你的对象,0)if(i=1)document.getElementById(box).style.backgroundImage=url(img/p_1.png)/if()两个= style 相当于调用css js图片必须有url 显示
13、在弹出的窗口 捕获属性样式else if(i=2)document.getElementById(box).style.backgroundImage=url(img/p_2.png)/图片的顺序必须一致else if(i=3)document.getElementById(box).style.backgroundImage=url(img/p_3.png)/if 语句结尾不能有冒号else if(i=4)document.getElementById(box).style.backgroundImage=url(img/p_4.png)else if(i=5)document.getEle
14、mentById(box).style.backgroundImage=url(img/p_5.png)elsealert(输入错误定义)/最后的else 没有()小括弧imgdisplay: none;/背景有大小才显示var a=prompt(input you favorite number,0)document.getElementsByTagName(img).item(a-1).style.display=block/驼峰写法 a-1表示第一个 捕获标签 每个都要加.var a=prompt(input you favorite number,0)/prompt 中的a变量就是键盘
15、输入的文本if(a=5)document.getElementsByTagName(img).item(a-1).style.display=blockelsealert(worry number)项目7var use=new Array();/定义一个数组盒子use0=土豆use1=胡萝卜use2=西红柿use3=白菜use4=芹菜var who=Math.floor(Math.random()*5);/Math.floor 只取整数Math.random取随机数0-1之间 5是范围document.title=今天吃 + usewho/数组盒子包着变量项目8imgdisplay: none
16、;/用js要事先声明function appear(a) function直接跟括号 没有符号document.getElementsByTagName(img).item(a-1).style.display=block/ var a=prompt(input you favorite number,0) 原来的函数名 appear 是类型 函数的事件 js比JQfunction()中多了函数名appear(3)/只用于检测 相当于 a=3 省略了/JS的定义onclick 单击 onblur 失去焦点 onmousemove鼠标移入 onkeyup 按键弹起function dianji()/可以多次回调alert(这个类型不能用)/事件dianji()/不能是click 和库重复项目9imgdisplay: none;function tanchu(
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 2023年城市马拉松投资申请报告
- 年终工作总结复盘模板
- 酒店餐饮卫生管理制度
- 《顶尖导购培训》课件
- 食盐物品买卖合同书(30篇)
- 2024届高考语文一轮复习第1章信息类文本阅读5第四节观点评价探究题-合理评价深入探究课件
- zzjjx-kj- (新窗口) - 上海财经大学
- 古诗词诵读《虞美人(春花秋月何时了)》课件 2024-2025学年统编版高中语文必修上册-1
- 四川省广元市高中名校2025届高考数学三模试卷含解析
- 广东广州市增城区2025届高三最后一模语文试题含解析
- 沪科版2023~2024学年七年级上学期期末考试数学预测卷(二)(含答案)
- 第二章 田径-短跑途中跑技术 教案 2023-2024学年人教版初中体育与健康七年级全一册
- 四川成都工业地产分析
- 外购外协管理制度
- 大庆医学高等专科学校单招参考试题库(含答案)
- 国家开放大学(山东)《财税法规专题》形考任务1-3+终结性考核参考答案
- 2024年PMP项目管理师考试试卷及答案指导
- 2024-2030年中国集中供热行业供需平衡与投资运行模式规划研究报告
- TCSRME 034-2023 隧道岩溶堵水注浆技术规程
- 2024年全国普法知识考试题库与答案
- 艺坊寻美-艺术实践体验坊智慧树知到答案2024年黑龙江幼儿师范高等专科学校
评论
0/150
提交评论