Показать сообщение отдельно
  #1 (permalink)  
Старый 08.08.2010, 17:31
Аватар для Hagrael
Аспирант
Отправить личное сообщение для Hagrael Посмотреть профиль Найти все сообщения от Hagrael
 
Регистрация: 17.02.2010
Сообщений: 88

Динамичное создание стилей
Вот у меня скрипт:
screen_width=screen.width
screen_height=screen.height
main_table_width=screen_width
logo_width=screen_width
logo_height=screen_height*189/768
up_menu_width=screen_width
up_menu_height=screen_height*37/768
left_panel_width=screen_height*160/768
left_panel_padding=screen_width*5/1024
menu_title_width=screen_width*150/1024
menu_title_height=screen_height*18/768
menu_item_width=screen_width*150/1024
menu_item_height=screen_height*25/768
content_padding=screen_width*6/1024
right_panel_width=screen_width*160/1024
right_panel_padding=screen_width*5/1024
profil_table_padding=screen_height*6/768
avatar_width=screen_width*150/1024
avatar_padding_top=screen_height*10/768
avatar_padding_bottom=screen_height*6/768
avatar_h_padding=screen_width*5/1024 

if (document.styleSheets[0].insertRule()) {
	document.styleSheets[0].insertRule("table.main_table {width: "+main_table_width+"px;}",0)
	document.styleSheets[0].insertRule("img.logo {width: "+logo_width+"px; height: "+logo_height+"px; border:0px;}",0)
	document.styleSheets[0].insertRule("td.up_menu {width: "+up_menu_width+"px; height: "+up_menu_height+"px; background-image: url('img/up_menu.png'); text-align: center;}",0)
	document.styleSheets[0].insertRule("td.left_panel {width: "+left_panel_width+"px; padding-left: "+left_panel_padding+"px}",0)
	document.styleSheets[0].insertRule("td.menu_title {width: "+menu_title_width+"px; height: "+menu_title_height+"px; background-image: url('img/menu_title.png');	font-weight: bold;	text-align: center;	background-repeat: repeat;	background-position: center center;}",0)
	document.styleSheets[0].insertRule("td.menu_item {width: "+menu_item_width+"px; height: "+menu_item_height+"px;	text-align: center;	background-image: url('img/menu_item.png');	border: 1px solid black; border-top: 0px;}",0)
	document.styleSheets[0].insertRule("td.content {color: white; padding-left: "+content_padding+"px;}",0)
	document.styleSheets[0].insertRule("td.right_panel {width: "+right_panel_width+"px; padding-right: "+right_panel_padding+"px}",0)
	document.styleSheets[0].insertRule("table.profil_table {border: 1px solid black; padding-bottom: "+profil_table_padding+"px;}",0)
	document.styleSheets[0].insertRule("td.avatar {width: "+avatar_width+"px; padding-top: "+avatar_padding_top+"px; padding-bottom: "+avatar_padding_bottom+"px; padding-right: "+avatar_h_padding+"px; padding-left: "+avatar_h_padding+"px}",0)
} else {
if (document.styleSheets[0].addRule()) {
	document.styleSheets[0].addRule("table.main_table","width: "+main_table_width+"px;")
	document.styleSheets[0].addRule("img.logo","width: "+logo_width+"px; height: "+logo_height+"px; border:0px;")
	document.styleSheets[0].addRule("td.up_menu","width: "+up_menu_width+"px; height: "+up_menu_height+"px; background-image: url('img/up_menu.png'); text-align: center;}")
	document.styleSheets[0].addRule("td.left_panel","width: "+left_panel_width+"px; padding-left: "+left_panel_padding+"px")
	document.styleSheets[0].addRule("td.menu_title","width: "+menu_title_width+"px; height: "+menu_title_height+"px; background-image: url('img/menu_title.png');	font-weight: bold;	text-align: center;	background-repeat: repeat;	background-position: center center;")
	document.styleSheets[0].addRule("td.menu_item","width: "+menu_item_width+"px; height: "+menu_item_height+"px;	text-align: center;	background-image: url('img/menu_item.png');	border: 1px solid black; border-top: 0px;")
	document.styleSheets[0].addRule("td.content","color: white; padding-left: "+content_padding+"px;")
	document.styleSheets[0].addRule("td.right_panel","width: "+right_panel_width+"px; padding-right: "+right_panel_padding+"px")
	document.styleSheets[0].addRule("table.profil_table","border: 1px solid black; padding-bottom: "+profil_table_padding+"px;")
	document.styleSheets[0].addRule("td.avatar","width: "+avatar_width+"px; padding-top: "+avatar_padding_top+"px; padding-bottom: "+avatar_padding_bottom+"px; padding-right: "+avatar_h_padding+"px; padding-left: "+avatar_h_padding+"px")
}
}

Но в IE не отображается, хотя должно (addRule - функция IE). Что делать?
Ответить с цитированием