IE5~8をCCS3の疑似セレクタ対応にするスクリプト - ie-css3.js
Post on:2010年1月20日
CSS3に対応していないIE5/6/7/8をCSS3の擬似セレクタに対応させるスクリプトを紹介します。
対応するセレクタは、下記の11種類です。
- :nth-child
- :nth-last-child
- :nth-of-type
- :nth-last-of-type
- :first-child
- :last-child
- :only-child
- :first-of-type
- :last-of-type
- :only-of-type
- :empty
スクリプトの動作は、セレクタを見つけたらシミュレーションしたものに変更されて適用されている、とのことです。
スクリプトの使用方法は、DOMAssistantと併用し、外部スクリプトとして記述します。
1 2 3 4 5 6 |
<textarea name="code" class="html" cols="60" rows="5"> <head> <script type="text/javascript" src="DOMAssistantCompressed-2.7.4.js"></script> <script type="text/javascript" src="ie-css3.js"></script> </head> </textarea> |
sponsors