YanoRyuichi.com/
Wiki
Blog
GitHub
Sandbox
開始行:
* classNameやcssTextでstyleの操作を減らす [#tdfbf667]
element.style.color = "red";
element.style.fontSize = "25px";
.active {
color: red;
fontsize: 25px;
}
element.className = "active";
element.style.cssText = "color: red; fontSize: 25px;"
** 出典 [#u4a05a1b]
http://www.slideshare.net/nzakas/writing-efficient-javasc...
終了行:
* classNameやcssTextでstyleの操作を減らす [#tdfbf667]
element.style.color = "red";
element.style.fontSize = "25px";
.active {
color: red;
fontsize: 25px;
}
element.className = "active";
element.style.cssText = "color: red; fontSize: 25px;"
** 出典 [#u4a05a1b]
http://www.slideshare.net/nzakas/writing-efficient-javasc...
ページ名: