HTML5
文章平均质量分 69
zhy前端攻城狮
个人博客:http://zhanghongyublog.com
展开
-
HTML中的attribute属性和JavaScript中的property属性的详解以及区别
一直没有搞懂attribute和property的区别,弄了个例子,总结了一下。一、基本概念区别 attribute:是HTML标签上的某个属性,如id、class、value等以及自定义属性,它的值只能是字符串,关于这个属性一共有三个相关的方法,setAttribute、getAttribute、removeAttribute; 注意:在使用setAttribute的时候,该函数一定接收原创 2018-01-11 17:55:11 · 20759 阅读 · 4 评论 -
关于SVG的viewBox和preserveAspectRatio
viewport表示SVG可见区域的大小。 //单位:不写默认为px。<svg style="width:400; height:200;"></svg>preserveAspectRatiopreserveAspectRatio=”align meetOrSlice” or preserveAspectRatio=”none” ...原创 2018-05-16 13:58:01 · 2184 阅读 · 0 评论 -
SVG & Canvas动态画矩形
SVG<svg style="width: 700px;height: 400px;"> <rect x="20" y="20" width="50" height="200" fill="red"> <animate attributeName="height" fr原创 2018-05-23 17:05:13 · 2012 阅读 · 0 评论