文件名称:scouter:CSS选择器特异性实用程序。 轻松计算特异性分数
文件大小:28KB
文件格式:ZIP
更新时间:2024-06-06 21:39:03
JavaScript
童军 Scouter是用CoffeeScript编写CSS选择器专用实用程序,符合。 用法 var scouter = new Scouter ( ) ; // Calculate selector specificity scores scouter . score ( '*' ) ; // 0 scouter . score ( 'LI' ) ; // 1 scouter . score ( 'UL LI' ) ; // 2 scouter . score ( 'UL OL+LI' ) ; // 3 scouter . score ( 'H1 + *[REL=up]' ) ; // 11 scouter . score ( 'UL OL LI.red' ) ; // 13 scouter . score ( 'LI.red.level' ) ; // 21 scouter . sco
【文件预览】:
scouter-master
----package.json(361B)
----src()
--------scouter.coffee(1KB)
----LICENSE(1KB)
----README.md(2KB)
----example()
--------index.html(380B)
----lib()
--------scouter.js(2KB)
----test()
--------index.html(1009B)
--------lib()
--------specs()