06 2018 档案

摘要:事件函数的2种方式 1 $.each(obj,function () { });2 $("").each(function () { }) 111 阅读全文
posted @ 2018-06-22 22:08 未来的技术 阅读(336) 评论(0) 推荐(0) 编辑
摘要:另一种事件 $("button").click(function () { var $ele=$("") }); hello 显示 隐藏 切换 回调函数,动画效果结束后触发,就是加个functionfunction f2() { $("div").hide(1000... 阅读全文
posted @ 2018-06-22 21:54 未来的技术 阅读(465) 评论(0) 推荐(0) 编辑
摘要:import pygame # pygame2d游戏 import time from pygame.locals import * import random class HeroPlane(object): def __init__(self,screen_temp): self.x=210 self.y=700 self.scree... 阅读全文
posted @ 2018-06-22 17:56 未来的技术 阅读(182) 评论(0) 推荐(0) 编辑
摘要:import pygame # pygame2d游戏 import time from pygame.locals import * class HeroPlane(object): def __init__(self,screen_temp): self.x=210 self.y=700 self.screen=screen_temp... 阅读全文
posted @ 2018-06-22 17:24 未来的技术 阅读(265) 评论(0) 推荐(0) 编辑
摘要:import pygame # pygame2d游戏 import time from pygame.locals import * class HeroPlane(object): def __init__(self,screen_temp): self.x=210 self.y=700 self.screen=screen_temp... 阅读全文
posted @ 2018-06-22 16:40 未来的技术 阅读(148) 评论(0) 推荐(0) 编辑
摘要:import pygame # pygame2d游戏 import time from pygame.locals import * class HeroPlane(object): def __init__(self,screen_temp): self.x=210 self.y=700 self.screen=screen_temp... 阅读全文
posted @ 2018-06-22 15:55 未来的技术 阅读(146) 评论(0) 推荐(0) 编辑
摘要:界面、图片加载、按键事件import pygame # pygame2d游戏 import time from pygame.locals import * def main(): # 01 screen = pygame.display.set_mode((480, 852), 0, 32) # 1窗口 background = pygame.image.load("... 阅读全文
posted @ 2018-06-22 15:26 未来的技术 阅读(126) 评论(1) 推荐(0) 编辑
摘要:Title 返回 阅读全文
posted @ 2018-06-21 17:56 未来的技术 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-06-21 17:51 未来的技术 阅读(112) 评论(0) 推荐(0) 编辑
摘要:+ 阅读全文
posted @ 2018-06-21 17:04 未来的技术 阅读(276) 评论(0) 推荐(0) 编辑
摘要:是否可见 是否可见 jerry 阅读全文
posted @ 2018-06-21 16:14 未来的技术 阅读(223) 评论(0) 推荐(0) 编辑
摘要:Title 菜单一 111 111 111 菜单二 222 222 222 ... 阅读全文
posted @ 2018-06-20 17:57 未来的技术 阅读(522) 评论(0) 推荐(0) 编辑
摘要:Title hello ppp click outer inner outer inner tom jerry sadf 111 222 333 阅读全文
posted @ 2018-06-20 17:18 未来的技术 阅读(419) 评论(0) 推荐(0) 编辑
摘要:hello ppp click outer inner outer inner tom jerry sadf 111 222 333 阅读全文
posted @ 2018-06-20 16:50 未来的技术 阅读(113) 评论(0) 推荐(0) 编辑
摘要:createlement 阅读全文
posted @ 2018-06-20 15:01 未来的技术 阅读(169) 评论(0) 推荐(0) 编辑
摘要:Title hello,jerry dddd ppp dddd ppp//this是固定值不可变 阅读全文
posted @ 2018-06-19 12:42 未来的技术 阅读(380) 评论(0) 推荐(0) 编辑
摘要:var ele=document.getElementsByClassName("div1")[0]var ele=document.getElementById("id1") 注意id和class的取法不同,一个加数组一个不加数组!!!!!!!!! 阅读全文
posted @ 2018-06-19 12:17 未来的技术 阅读(244) 评论(0) 推荐(0) 编辑
摘要:document拿到的是整个html页面,之后element对标签进行选择拿取,少用id多用class hello 1 p hello 2 p hello 1 p hello 2 p hello div div3 click hello 1 p he... 阅读全文
posted @ 2018-06-18 18:11 未来的技术 阅读(4845) 评论(1) 推荐(0) 编辑
摘要:Title 停止 阅读全文
posted @ 2018-06-18 17:07 未来的技术 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-06-18 17:04 未来的技术 阅读(138) 评论(0) 推荐(0) 编辑
摘要://创建字符串对象两种方式 var str1="hello"; var str2=new String("hello2") var str1="hello"; console.log(str1.length)//字符串的属性 var arr=['a',123,{'name':'we'},3] var arr2=new Array('wer') ... 阅读全文
posted @ 2018-06-18 16:06 未来的技术 阅读(355) 评论(0) 推荐(0) 编辑
摘要:var x=0; for(var i=0;i<=100;i++){ x=x+i; } console.log(x)//输出5050 阅读全文
posted @ 2018-06-18 15:07 未来的技术 阅读(93) 评论(0) 推荐(0) 编辑
摘要:hello,jerry!! hello,tom! hello,cat hello,tiger 阅读全文
posted @ 2018-06-17 18:02 未来的技术 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-06-17 17:19 未来的技术 阅读(76) 评论(0) 推荐(0) 编辑
摘要:第1种方法:可以放head里、body里、body和html之间 第二种引用方法: 先建一个js的页面test.js 然后在html页面的head部分加入引用 阅读全文
posted @ 2018-06-13 21:46 未来的技术 阅读(116) 评论(0) 推荐(0) 编辑
摘要:Title 1 2 3 4 5 6 7 8 9 10 下一页 阅读全文
posted @ 2018-06-13 21:13 未来的技术 阅读(895) 评论(0) 推荐(0) 编辑
摘要:Title 全部 段子 图片 你问我答 42区 挨踢1024 ... 阅读全文
posted @ 2018-06-13 20:58 未来的技术 阅读(134) 评论(0) 推荐(0) 编辑
摘要:/*style="clear: left"清除左边的浮动,相当于换行*/ 阅读全文
posted @ 2018-06-12 13:54 未来的技术 阅读(1344) 评论(1) 推荐(0) 编辑
摘要:.div1{ border: 1px solid red; width: 100px; height: 100px; padding: 5px;/*内边距 ,外边大小不变,内部与边框距离*/ } .div2{ border: 1px solid red; width: 90px; height: 90px;... 阅读全文
posted @ 2018-06-08 21:58 未来的技术 阅读(121) 评论(0) 推荐(0) 编辑
摘要:ol,ul{ list-style: circle;前面不是数字是小圆圈 } *{ width: 150px; height: 150px; } div{ background-color: red; /*display: inline;!*内联无法设置长宽*!... 阅读全文
posted @ 2018-06-08 17:45 未来的技术 阅读(129) 评论(0) 推荐(0) 编辑
摘要:介绍文本属性 .div1{ width: 200px; height: 200px; border: 5px solid red; } 阅读全文
posted @ 2018-06-08 17:16 未来的技术 阅读(183) 评论(0) 推荐(0) 编辑
摘要:/*内联标签*/ 阅读全文
posted @ 2018-06-08 16:51 未来的技术 阅读(162) 评论(0) 推荐(0) 编辑
摘要:asdsd aa 阅读全文
posted @ 2018-06-08 15:50 未来的技术 阅读(161) 评论(0) 推荐(0) 编辑
摘要:属性选择器用【】,其中的属性名与值任取 <style> [hound='sb']{ color: red ; } </style></head><body> <div hound="sb"> sdasfaw</div></div> 阅读全文
posted @ 2018-06-08 15:34 未来的技术 阅读(77) 评论(0) 推荐(0) 编辑
摘要:<head> <meta charset="UTF-8"> <title>Title</title> <style> 组合使用加,逗号#dd,.pp,div{} class=div1 class=div2 后代选择器先定位到父然后用空格:.div1 .div2{} </style></head> < 阅读全文
posted @ 2018-06-08 15:20 未来的技术 阅读(94) 评论(0) 推荐(0) 编辑
摘要:hello jerry hello tom hello 点我 阅读全文
posted @ 2018-06-08 14:43 未来的技术 阅读(153) 评论(0) 推荐(0) 编辑
摘要:右键新建stylesheet就可以新建css后缀名的页面: 阅读全文
posted @ 2018-06-08 13:58 未来的技术 阅读(326) 评论(0) 推荐(0) 编辑
摘要:table主要:tr th td 阅读全文
posted @ 2018-06-06 21:53 未来的技术 阅读(1163) 评论(0) 推荐(0) 编辑
摘要:小伙子 //要用utf8必备的完整语句 Title //网页输入文字就可以导航至该网站 //网站的简要描述 //2秒之后刷新跳转到指定的百度页面,不加url也可以,定时刷新 //要用utf8必备的完整语句 //compatiable兼容标签,表示兼容ie7 ... 阅读全文
posted @ 2018-06-06 21:34 未来的技术 阅读(180) 评论(0) 推荐(0) 编辑
摘要:form表单标签根server端打交道 顶部 返回顶部必须用#,才能把abc读成一个标签的id value这样的一个过程 } submit的value只是显示作用不提交,没功能 submit点击就会把所有内容一起提交 button不与js一起就仅仅是按钮没作用 form表单才能对这些输入内容进行提交修改等请求处理 action传到某个页面或者路径 --> 注册页面 index对应一个函... 阅读全文
posted @ 2018-06-05 16:47 未来的技术 阅读(170) 评论(1) 推荐(0) 编辑
摘要:abc alt没啥用 title鼠标悬停在图片时会显示title内容 超链接标签 校花网http是协议必须要有吧 3个列表标签 无序列表、ul与li必须是共同使用,用黑点在开头 1 2 ol是有序的加123 1 2 dl自定义的列表分层显示 第一章dt列表标题 第一节dd列表项 第二节 阅读全文
posted @ 2018-06-05 15:52 未来的技术 阅读(148) 评论(0) 推荐(0) 编辑
摘要://hello,jerry hello,tom //h标签从h1开始h2h3h4...从大到小的标签显示 //h标签一般作为标题 咏鹅 鹅鹅鹅 曲项向天歌 //p标签不光换行还使上下文有固定间隙 //br标签只能换行 //习惯加个/作为终结 只要998//strike标签就是在文字内容上加一个横线 32//下角标 32//上角标 //单独的一条横线 //div标签最大的特点就是没有特... 阅读全文
posted @ 2018-06-05 15:23 未来的技术 阅读(133) 评论(0) 推荐(0) 编辑
摘要:meta标签在head里 link标签 阅读全文
posted @ 2018-06-05 14:38 未来的技术 阅读(231) 评论(0) 推荐(0) 编辑
摘要:server.py:#css主要是用于布局、颜色,js用于动作处理如图片轮换 import socket def main(): sock=socket.socket(socket.AF_INET,socket.SOCK_STREAM) sock.bind(('localhost',8080)) sock.listen(5) while True: ... 阅读全文
posted @ 2018-06-05 13:53 未来的技术 阅读(323) 评论(0) 推荐(0) 编辑