Jump to content
  • 0

Кроссбраузерная flash


Small_man
 Share

Question

Заверстал flash через SwfObject но вот никак не могу найти материала по тому как сделать так чтобы flash ролик растягивался под размер окна

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ru" xml:lang="ru">
<head>
<title>[(site_name)]</title>

<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<link rel="stylesheet" href="assets/templates/default/sait.css" type="text/css" />
<script type="text/javascript" src="assets/media/swfobject.js"></script>

<script type="text/javascript">
swfobject.registerObject("myId", "9.0.0", "expressInstall.swf");
</script>

</head>

<body>
<div id="intro">

<object id="myId" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%">

<param name="movie" value="assets/media/city.swf" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="assets/media/city.swf" width="100%" height="100%">

<!--<![endif]-->
<p>Alternative content</p>
<!--[if !IE]>-->
</object>
<!--<![endif]-->

</object>
</div>
</body>
</html>

#intro{
width: 100%;
height: 100%;
}

моежт кто знает как это сделать??? :)

Edited by Small_man
Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

Чтобы <объект> растягивался на величину контейнера, может надо задать эту величину? :)

#intro{

width: 100px;

height: 100px;

}

Процентное соотношение в данном случае не годится.

Link to comment
Share on other sites

  • 0
Чтобы <объект> растягивался на величину контейнера, может надо задать эту величину? :)

#intro{

width: 100px;

height: 100px;

}

Процентное соотношение в данном случае не годится.

а как тогда решить этот вопрос??? есть методы решения???

Link to comment
Share on other sites

  • 0

Неясно, кто - кого не понял.

С вашим кодом все нормально.

1. Размеры задаются по иерархии, сначала проверятся размер коробки <div>, в котором ваш *.swf. И если этот размер не ограничен, то *.swf принимает размер по умолчанию 100% величины доступного места, даже если это окно браузера.



#intro{
width: 100%;
height: 100%;
}

Следует указать не процентные, а точнее размеры. IE 7, к примеру, проглотит и развернет флэшку на весь экран, а вот лиса проиграет только звук. Указывайте рзмеры в точных единицах, если <div> не вложенный.

К примеру, как выше:


#intro{
width: 100px;
height: 100px;
}

2. Следует учитывать также размеры контейнеров, куда вложен Ваш <div id="intro">. В данном случае не вложен ни в какие другие.

3. Далее размер проверяется в теге <object>. Пройдемся по коду:



<object id="myId" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="100%" height="100%">

Эту строку исполняют все браузеры. Ваши рамеры width="100%" height="100%". Следовательно *.swf остается 100%.

Далее:



<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="assets/media/city.swf" width="100%" height="100%">

<!--<![endif]-->

Эту строку исполнят все браузеры, кроме IE. Здесь также все размеры 100%.

Link to comment
Share on other sites

  • 0

java script:

var width, height;
if ( document.compatMode && document.compatMode == 'CSS1Compat' && ! window.opera )
{
width = document.documentElement.clientWidth;
height = document.documentElement.clientHeight;
}
else
{
width = document.body.clientWidth;
height = document.body.clientHeight;
}

CSS extension:

width: expression( ( ( document.compatMode && document.compatMode=='CSS1Compat' ) ? document.documentElement.clientWidth : document.body.clientWidth ) < 1000 ? '1000px' : 'auto' );

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy