• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • YouClaw
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
程媛媛Lexy
博客园    首页    新随笔    联系   管理    订阅  订阅

随笔分类 -  Web前端开发-学习笔记

1 2 3 4 下一页
【SummaryPlan】Summary of Feb & Plan of March——How to 'just do it'?

摘要:Why I choose to be a graduate student from an undergraduate student?It’s time to applying for internships. Recalling this time last year, how I beg fo... 阅读全文
posted @ 2015-03-06 20:57 程媛媛Lexy 阅读(131) 评论(0) 推荐(0)
【总结+计划】2015一月份总结+2015二月份计划——全栈实践

摘要:看教程,做demo习惯的力量 阅读全文
posted @ 2015-02-08 20:53 程媛媛Lexy 阅读(81) 评论(0) 推荐(0)
【计划】六月自学计划

摘要:又是一年高考时。为遇见和自己一样的人,为成全你想要的自己。当我读到这句话,我就很喜欢叻。工作是自己一辈子的事情,实习是工作的前奏。当然要认真对待,谨慎选择。选择自己喜欢的,这辈子才不会活得厌烦。我找到不错的资料,这个月是考试月,复习与自学并行,希望可以快速进步,干巴爹。 阅读全文
posted @ 2014-06-07 10:14 程媛媛Lexy 阅读(122) 评论(0) 推荐(0)
【DOM】1.DOM优化

摘要:1.JS include :DOM BOM ECMA2.Browser 分别独立实现dom & JSas if two isolated islands3.JS操作DOMfrom the island to the other one4.DOM性能The bridges between island... 阅读全文
posted @ 2014-05-25 09:40 程媛媛Lexy 阅读(120) 评论(0) 推荐(0)
【DOM】学习笔记

摘要:三、一份文档就是一颗节点树节点类型:元素节点——属性节点、文本节点getElementById()返回一个对象,对应一个元素节点getElementByTagName()返回一个对象数组,分别对应一个元素节点getAttribute()setAttribute()四、childNodesnodeTy... 阅读全文
posted @ 2014-05-24 19:38 程媛媛Lexy 阅读(133) 评论(0) 推荐(0)
【计划】五月自学计划

摘要:四月份已初步学习HTML、CSS,接下来五月份完成学习JS Jquery的阶段,听取师兄们的意见,看视频会学得快一些,诚然如此。 阅读全文
posted @ 2014-05-06 11:31 程媛媛Lexy 阅读(104) 评论(0) 推荐(0)
【总结】自学计划第一阶段

摘要:终于大略看完htmldog网站上的内容了 ,对html CSS JS有整体框架的了解。 第二步就是好好细化知识系统,增加实践内容了 老外写的东西就是有趣,如下摘抄一段:Once upon a time, many eons ago, when the Internet was just a sma... 阅读全文
posted @ 2014-04-18 16:21 程媛媛Lexy 阅读(124) 评论(0) 推荐(0)
【JS】Advanced1:Object-Oriented Code

摘要:Object-Oriented Code1.var Person = function (name) { this.name = name;};Person.prototype.say = function (words) { alert(this.name + ' says "' + ... 阅读全文
posted @ 2014-04-17 20:51 程媛媛Lexy 阅读(204) 评论(0) 推荐(0)
【HTML】Advanced7:Embedded Content: Video, Audio, and Canvas

摘要:1.video(fall-back contentalternative2.audio3.canvas:paint all manner of dynamic images such as graphs, animated sprites, or daft cat pictures. 阅读全文
posted @ 2014-04-17 17:18 程媛媛Lexy 阅读(163) 评论(0) 推荐(0)
【HTML】Advanced7:HTML5 Forms Pt. 2: Attributes and Data Lists

摘要:1.提供可描述输入字段预期值的提示信息(hint)。2.autofocus3.标签定义选项列表。请与 input 元素配合使用该元素,来定义 input 可能的值。datalist 及其选项不会被显示出来,它仅仅是合法的输入值列表。 ... 阅读全文
posted @ 2014-04-17 17:03 程媛媛Lexy 阅读(159) 评论(0) 推荐(0)
【HTML】Advanced6:HTML5 Forms Pt. 1: Input Types

摘要:1.Not yet work fully on all major browsers2.<input type="search tel url email datetime date month week time datetime-local color" name="search"CSS:val... 阅读全文
posted @ 2014-04-17 16:52 程媛媛Lexy 阅读(145) 评论(0) 推荐(0)
【HTML】Advanced5:Accessible Forms

摘要:1.label Your Name id for the to associate it to.2.fieldset & legend Name First name Last name Addr... 阅读全文
posted @ 2014-04-17 11:52 程媛媛Lexy 阅读(135) 评论(0) 推荐(0)
【HTML】Advanced4:Accessible Links

摘要:1.Tab Here There Limbo2.Link titlesI'm really bad at writing link text. Click here to find out more.Don’t have links open something in a new ... 阅读全文
posted @ 2014-04-17 11:34 程媛媛Lexy 阅读(125) 评论(0) 推荐(0)
【HTML】Advanced3:Tables: Columns, Headers, and Footers

摘要:1. This That The other Ladybird Locust Lunch 2. **vs figcapti... 阅读全文
posted @ 2014-04-17 11:15 程媛媛Lexy 阅读(211) 评论(0) 推荐(0)
【HTML】Advanced2:Conditional Comments

摘要:1.try and figure out what is sensible for you to support. Are your web site visitors likely to be using IE6? Probably not.2. eg. … for IE versions g... 阅读全文
posted @ 2014-04-17 10:57 程媛媛Lexy 阅读(125) 评论(0) 推荐(0)
【HTML】Advanced1:Text: Time, Mark, and "Presentational"

摘要:1.Exploring the depths of HTML52.Written by Doctor Who on Thursday 21st November 2052 9:30.the value of should be a machine-readable date and/or time3... 阅读全文
posted @ 2014-04-17 10:50 程媛媛Lexy 阅读(208) 评论(0) 推荐(0)
【CSS3】Advanced11:Media Queries

摘要:1.Browser-size specific CSS@media screen and (max/min-width:1000px){}2.Orientation-specific CSS?@media screen and(orientation landscape/portrait){}3.D... 阅读全文
posted @ 2014-04-17 10:40 程媛媛Lexy 阅读(136) 评论(0) 推荐(0)
【CSS3】Advanced10:Gradient

摘要:1.background:linear-gradient(20deg/(to) bottom right,orange,red,hsl(60,100%,50%));2.-webkit-chrome/safari -o-opera -ms-IE9exclude "to""at"a fallback3.... 阅读全文
posted @ 2014-04-17 10:04 程媛媛Lexy 阅读(137) 评论(0) 推荐(0)
【CSS3】Advanced9:Transformation

摘要:1.transform:rotate(-10deg) skew(20deg,10deg) scaling(2/1,2) translate/移动(100px,200px)2.transform:matrix(rotate,scale,translate,skew)?involve maths3.tr... 阅读全文
posted @ 2014-04-16 18:16 程媛媛Lexy 阅读(154) 评论(0) 推荐(0)
【CSS3】Advanced8:CSS Backgrounds: Multiples, Size, and Origin

摘要:1.Multiples,Size,and Origineg:background-image:url(bg.png),url(bullet.png) 0 50% no-repeat,url(arrow.png) right no-repeatbackground-imagebackground-co... 阅读全文
posted @ 2014-04-16 11:47 程媛媛Lexy 阅读(123) 评论(0) 推荐(0)

1 2 3 4 下一页
博客园  ©  2004-2026
浙公网安备 33010602011771号 浙ICP备2021040463号-3