上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: 一、document.getElementById() 根据id获取元素节点 二、document.getElementsByTagName() 根据标签名获取元素节点,返回的是一个nodeList对象,可以遍历输出,也可以根据索引号选择其中一个。 三、document.getElementsByC 阅读全文
posted @ 2017-01-12 16:09 asimpleday 阅读(249) 评论(0) 推荐(0) 编辑
摘要: string对象属性: 1、length 获取字符串的长度,需要注意的是,js中中文每个汉字也只代表一个字符。 string对象方法: 1、charAt() 可以用来获取指定位置的字符串,index为字符串索引值,从0开始到string.length-1,若不在此范围,则返回一个空字符串。 2、ch 阅读全文
posted @ 2017-01-11 22:48 asimpleday 阅读(420) 评论(0) 推荐(0) 编辑
摘要: input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{ color:#7b642c; } input:-moz-placeholder,textarea:-moz-placeholder{ color:#7b642c; } 阅读全文
posted @ 2017-01-10 16:28 asimpleday 阅读(398) 评论(0) 推荐(0) 编辑
摘要: body, h1, h2, h3, h4, h5, h6, hr, p, blockquote,dl, dt, dd, ul,ol, li,pre,form, fieldset, legend, button, input, textarea,th, td { margin: 0; padding: 0; } body,button, input, select, textarea { ... 阅读全文
posted @ 2017-01-06 15:27 asimpleday 阅读(227) 评论(0) 推荐(0) 编辑
摘要: $(function () { var i = 3; var intervalid; intervalid = setInterval(function () { if (i == 0) { clearInterval(intervalid); window.l... 阅读全文
posted @ 2017-01-06 15:21 asimpleday 阅读(187) 评论(0) 推荐(0) 编辑
摘要: var a="13788904219"; var b=a.substring(0,3)+"****"+a.substring(7,11); console.log(b); //137****4219 阅读全文
posted @ 2017-01-06 15:16 asimpleday 阅读(115) 评论(0) 推荐(0) 编辑
摘要: 一、基本语法 这是html代码(一张200*200的图片): 1.1、首先你得定义一个动画的名字(name) 和 动画的持续时间(duration) 上面代码表示,当鼠标悬停在这张图片上时,会生成一个叫做change的动画,持续时间为1秒,接下来,我们需要用keyframes关键字,定义change 阅读全文
posted @ 2016-11-28 10:40 asimpleday 阅读(456) 评论(0) 推荐(0) 编辑
摘要: 一、基本概念 在css3引入transition这个概念之前,css是没有时间轴的,也就是说,所有的动画效果,都是即时完成。 比如这里: html代码: css代码: 这里我鼠标移入图片上时,图片会立即变大,整个过程瞬间完成。 二、语法 2.1、property 和 duration 这俩个规定设置 阅读全文
posted @ 2016-11-28 09:47 asimpleday 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 一,啥是flex? 1、Flex是Flexible Box的缩写,意为"弹性布局",用来为盒状模型提供最大的灵活性。任何一个容器都可以指定为Flex布局。 webkit内核的浏览器,必须加上-webkit- 前缀 注意:设为flex布局之后,子元素的float,clear,vertical-alig 阅读全文
posted @ 2016-11-24 15:08 asimpleday 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 1、text-shadow 文字阴影 四个参数,依次: a:水平偏移 b:垂直偏移 c:阴影程度 d:阴影颜色 2、word-break:break-all 解释:允许单词换行,是紧接前面内容 3、word-wrap:break-word 解释:允许单词换行,是先把单词换一行 4、white-spa 阅读全文
posted @ 2016-11-22 15:18 asimpleday 阅读(434) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页