1 / 25

Тонкий CSS для Internet Explorer

Тонкий CSS для Internet Explorer. Павел Корнилов. Браузеры. Internet Explorer Ошибки. HTML. <img alt=“alt”/> <label> Имя: <input/></label> PNG. CSS. :hover opacity inherit :first-child. Решения. DHTML Behaviors expression Иногда верстать таблицами. DHTML Behaviors. Подключение:

rupert
Download Presentation

Тонкий CSS для Internet Explorer

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Тонкий CSS дляInternet Explorer Павел Корнилов

  2. Браузеры

  3. Internet ExplorerОшибки

  4. HTML • <img alt=“alt”/> • <label>Имя: <input/></label> • PNG

  5. CSS • :hover • opacity • inherit • :first-child

  6. Решения • DHTML Behaviors • expression • Иногда верстать таблицами

  7. DHTML Behaviors Подключение: behavior: url(behavior.htc); Внутри: jScript или VBScript

  8. Whatever:hover body { behavior: url(hover.htc) } Лечит: :hover :active

  9. IE PNG Fix img, div { behavior: url(iepngfix.htc) } Лечитальфа прозрачность у PNG: картинки фон

  10. Expression .mydiv { a: expression(alert(), b, c = 1); } Что это законструкция?

  11. Особенность • Исполняется при каждом действиипользователя • После каждого блока ставится запятая • with(this), this - необязателен

  12. В ней работает • Вызов функции • Анонимные функции • Присваивание переменной • (true) ? 1 : 2 • комментарии//и/**/ • Конкатенация

  13. Не работает • Точка с запятой • if … else • Иногда, пробелы

  14. function expression() { // колдовской код }

  15. Похоже?

  16. Style Три способа: • style • currentStyle • runtimeStyle

  17. Примеры Вспомните JavaScript

  18. alt и title img { behavior: expression( (this.alt&&!this.title) ? this.title = '' : '' ) }

  19. alt и title img { behavior: expression( (alt&&!title) ? title = '' : '' ) }

  20. alt и title img { behavior: expression( (alt&&!title) ? title = '' : '', runtimeStyle.behavior = 'none' ) }

  21. alt и title img { behavior: expression( runtimeStyle.behavior = 'none', (alt&&!title) ? title = '' : '' ) }

  22. alt и title img { scrollbar-face-color: expression( runtimeStyle.scrollbarFaceColor = '#fff', (alt&&!title) ? title = '' : '' ) }

  23. background и png filter: expression( (runtimeStyle.filter == '') ? runtimeStyle.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader(src='+currentStyle.backgroundImage.split('\"')[1]+', sizingMethod=crop)' : runtimeStyle.filter, runtimeStyle.backgroundImage = 'none' )

  24. IMG и PNG filter: expression( (runtimeStyle.filter==''&&className!='ie')? (h = this.insertAdjacentHTML('afterEnd', '<span style="filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='+src+',sizingMethod=scale); zoom:1"><img width="'+width+'" height="'+height+'" src="'+src+'" alt="" style="visibility:hidden;display:block" class="ie"/></span>'), style.display = 'none‘) : '', runtimeStyle.filter = 'none' )

  25. Павел Корнилов http://lusever.livejournal.com/

More Related