Hej!

Jag har använt den här metoden:

gotoAndLearn() - Free video tutorials from Lee Brimelow on Adobe Flash

För att försöka skapa en sida med en video som funkar på alla system (med o utan flash, iphone och dator). Men jag får fortfarande en överstruken playsymbol i iphone (och på ipad antar jag, dock har jag inte kunnat testa). mp4-videon är h264, kan det ha med saken och göra? .ogg-videon (firefox spelar inte .mp4 utan flash) verkar funka i firefox med flash avstängt. Nedan kommer koden, ser ni var felet kan ligga?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transi...">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>John Stenborg</title>
<link href="styles/jstenborg.css" rel="stylesheet" type="text/css" />

<script type="text/javascript" src="swfobject.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.src = "http://johnstenborg.se/resurs/video/film_for_...";
flashvars.autoPlay = true;
flashvars.controlBarMode = "floating"
flashvars.controlBarAutoHide ="true"
flashvars.controlBarAutoHideTimeout = "1"
var params = {};
params.allowfullscreen = "true";
params.allowscriptaccess = "always";
var attributes = {};
swfobject.embedSWF("http://fpdownload.adobe.com/strobe/FlashMedia...", "videodiv", "720", "576", "10.1.0", "expressInstall.swf", flashvars, params, attributes);
</script>

</head>

<body>

<div id="container"> <a href="index.php"><img src="resurs/tilesbannermindre.png" href="johnstenborg.html" width="545" height="120" /> </a> </div>

<table width="600" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="top" align="left"><div class="menu">
<? include_once("meny.inc");?>

</div></td>
<td valign="top" align="left"><table width="800" border="0" cellpadding="40">
<tr>
<td>
<div id="videodiv">
<video controls="controls" autoplay="true" width="720" height="576">
<source src="resurs/video/film_for_videoskulptur.mp4" type="video/mp4" />
<source src="resurs/video/film_for_videoskulptur.ogg" type="video/ogg" />

</div>
</td>
</tr>
</table></td>
</tr>
</table>

</body>

</html>

Tacksam för svar!

Senast redigerat 2011-01-24 11:28