HTML - How To Display .mov Video In Fullscreen ?
Hi,
how can I display a .mov video in fullscreen ? I would like to add a link below "Show Full Screen Video". thanks Similar Tutorialshello, how can I create a full screen pop up like the boss panic button on www.workoplis.com the code i saw was Code: <a href="javascript:void(0);" onClick="fullScreen('http://www.workopolis.com/boss_button.html');" class="nav2off" target="_top">Boss Panic Button</a> thanks in advance.. Hi, I need to have an intranet page open fullscreen when someone clicks on hyperlink is this possible in html or do I need to use javascript? here is code for link 'XXXX' is server name when user clicks on this link the login page loads but not fullscreen users want it load fullscreen. <code> <td height="19" colspan="2"><a href="http://XXXX/" target="blank" ><img src="../images/Concerto.gif"target="blank" width="119" height="90" border="1"></a></td> </code> Hi guys, I posted a tread last week about a preloader to load and cache multiple files (swf) that are at different addresses before playing a flash page. Someone finally posted an answer, and the code is almost working perfectly. The way to make it work is by having an .html file, an .as file and a .swf loader file. But right now I have an issue with the html file. It's working perfectly in Safari and Firefox but not in Internet Explorer. In IE the swf appears really small in the window. Any ideas why ? The test address is; http://www.liferevolution.com/test2/ Here's the code for the html; HTML Code: <!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"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script src="swfobject.js" type="text/javascript"></script> <script type="text/javascript"> var flashVars = {}; flashVars.fileToLoad = "main1.swf"; //change here to same url wrote into the preloader array var params = {}; params.scale = "true"; // exactfit, noscale, noborder params.allowfullscreen = "true"; //params.salign = "center"; params.allowScriptAccess = "sameDomain"; params.quality = "high"; params.menu = "false" ; params.bgcolor = "#000000" ; var attributes = {}; //attributes.align = "center"; attributes.id = "mbox"; attributes.name = "mbox"; var breite = "0"; var hoehe = "0"; var swfFile = "javaScriptCaller"; var mainFlashApp = "myFlash"; var flashVersion = "9.0.0.0"; swfobject.embedSWF("preloaderExample.swf", "myFlash", "100%", "100%", "9.0.0.0","expressInstall.swf", flashVars,params,attributes); function fullScreen() { posHelper("100%","100%"); posHelper2((breite-20) + "px",(hoehe-20) + "px"); var ele = document.getElementById("flashPosition"); ele.style.margin = 0; ele.style.top = 0; ele.style.left = 0; ele.style.width = "100%"; ele.style.height = "100%"; } function posHelper (b,h) { var ele = document.getElementById("flashSize"); ele.style.width = b; ele.style.height = h; ele.style.overflow = "hidden"; } function posHelper2(b,h) { var ele = document.getElementById("htmlContent"); ele.style.position = "absolute"; ele.style.top = "0px"; ele.style.left = "0px"; ele.style.margin = "10px"; ele.style.width = b; ele.style.height = h; } function onLoadBody() { fullScreen(); } </script> <style type="text/css"> <!-- html,body { padding: 0; margin: 0; height: 100%; width: 100% } #meinFlash { position: absolute; left: 0px; top: 0px; padding: 0px; margin: 0px; } #htmlContent { } --> </style> </head> <body onload="javascriptnLoadBody();" style="background-color:#000000;"> <div id="flashPosition" style="background-color:#000000s; z-index:3;"> <div id="flashSize" style="z-index: 2;"> <div id="htmlContent" name="htmlContent" style="z-index: 2;"></div> <div id="myFlash" name="myFlash" style="z-index: 1;"> <p>Alternativ für Flash</p> </div> </div> </div> <script type="text/javascript"> var x = 0; </script> <noscript> <p>Javascript NoScript</p> </noscript> </body> </html> Thanks in advance !!!! Im in desperate need of some help ASAP , im a graphic designer and have bitten off a little more than i can chew. This was my first flash site and while i found actually making the site in flash wasnt too difficult im having a BIG problem getting it up and online in working order. the site is BodyBronzeTanning.net PROBLEM 1 : if you vist the link in ie or safari youll see nothing comes up . this is my first problem. whats wrong with my code and why isnt it working . dose anyone have a VERY simple html page for full screen flash with no mailware or virus's they wouldnt mind sharing or could someone just help me get my code running? PROBLEM 2 : The site has been flaged for MAILWARE!?!?!?!?! ... i know i dint put anything i meant to be harmful so why is it flagging me ? i have no clue why my site would have anything harmful. PROBLEM 3 : This is the least important of my problems, i have a AS3 CONTACT form that i bought from flashden that advertised . just drag,drop and change the email on the php....i did so and its still not working if anyone would be willing to take a look and help me with this i would even be willing to pay or trade resources in exchange with help . the link to the .fla and .php is http://rapidshare.com/files/26634912...nning.zip.html Hey all, Is it possible to shut down video screen automatically after displaying the video? I mean, after video is over, is it possible to hide the video screen? ( I tried to use embed tag... <embed src="myVideo" autostart="true" /> ??) Thanks, Doron Hello, first post. HELLO! my video widget playlist on my index is a different size on my index.php but the correct size throughout the rest of my site. Its quite annoying, can anyone shed any light on this issue? thanks. http://www.brewrecords.net HTML Code: <?php get_header(); ?> <div id="content"> <div id="homepagetop"> <div class="textbanner"> <?php $recent = new WP_Query("cat=" .ot_option('hp_top_cat'). "&showposts=1"); while($recent->have_posts()) : $recent->the_post();?> <h3><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3> <?php endwhile; ?> </div> <div id="homeslider"> <?php include(TEMPLATEPATH."/includes/slider.php");?> </div> <div class="homewidgets"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Homepage Top Right') ) : ?> <div class="widget"> <h4>Widget Area</h4> <p>This section is widgetized. To add widgets here, go to the <a href="<?php echo admin_url(); ?>widgets.php">Widgets</a> panel in your WordPress admin, and add the widgets you would like to <strong>Homepage Top Right</strong>.</p> <p><small>*This message will be overwritten after widgets have been added</small></p> </div> <?php endif; ?> </div> </div> <div id="homepage"> <?php include(TEMPLATEPATH."/sidebar_left.php");?> <div class="homepagemid"> <h3><?php echo cat_id_to_name(ot_option('hp_mid_cat')); ?></h3> <?php $recent = new WP_Query("cat=" .ot_option('hp_mid_cat'). "&showposts=" .ot_option('hp_mid_num') ); while($recent->have_posts()) : $recent->the_post();?> <div class="homepagecontent"> <a href="<?php the_permalink() ?>" rel="bookmark"><?php the_post_thumbnail( 'home-thumbnail' ); ?></a> <h4><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h4> <?php the_excerpt(); ?> </div> <?php endwhile; ?> </div> <?php include(TEMPLATEPATH."/sidebar_right.php");?> </div> </div> <!-- The main column ends --> <?php get_footer(); ?> Hi guyz, i have a query Mouse over the datagrid cell display tooltip or panel to display information but only using HTML and CSS not using javascript. can anyone help me. because im gonna use it on htmleditor on c# desktop application thax before ok so i posted a music video code on a forum but i want it to aut play when a user views the thread can this be done? the video code is: <center><embed src="http://www.youtube.com/v/JHg2q5M6WnY" type="application/x-shockwave-flash" wmode="transparent" width="600" height="400"></embed></center> Hey guys, I was wondering, that almost 90% of Video on the web is in flash. How will that video be converted into HTML 5. Also, are there any good HTML Video editing tools. hello, ive got a video in a mpeg file is there anyway i can transform this into a flash file so its will automatically play at the top of my page in a loop, any ideas would be very helpfull thanks frag When writing in HTML, how whould I add a video to my web page? What code would websites like youtube and metacafe let other people upload things? Please help! I hired someone to update our website and they royally screwed me. We didn't like what they did with video and despite promising to archive/save the old code when they updated - it is all gone. GoDaddy wants $1500 to revert the website back. I got almost all of it figured out but I have no experience and I am stuck on one final piece. We have a video player on the website and a list of videos to click and play. That is working. We want a static image showing in the video player that will play when clicked. I have the image. I have the video. But nothing I have tried works. Can anyone please help? HTML Code: <%@ Control Language="C#" AutoEventWireup="true" CodeFile="bannerControl.ascx.cs" Inherits="bannerControl" %> <script> </script> <div class="banner"> <object id="FlashID3" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="192"> <param name="movie" value="flash banner15.swf" /> <param name="quality" value="high" /> <param name="swfversion" value="8.0.35.0" /> <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don�t want users to see the prompt. --> <param name="expressinstall" value="Scripts/expressInstall.swf" /> <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. --> <!--[if !IE]>--> <object type="application/x-shockwave-flash" data="flash banner15.swf" width="548" height="192"> <!--<![endif]--> <param name="quality" value="high" /> <param name="swfversion" value="8.0.35.0" /> <param name="expressinstall" value="Scripts/expressInstall.swf" /> <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. --> <div> <h4>Content on this page requires a newer version of Adobe Flash Player.</h4> <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p> </div> <!--[if !IE]>--> </object> <!--<![endif]--> </object> </div> <div class="videoSection"> <div class="videoPlayer" id="videoPlayer"> <iframe src= default.htm" width="316" height="177" autoStart="false" high allowtransparency="true" frameborder="0" scrolling="no"></iframe> </div> <div class="videoList"> <div class="topBtn"><img src="images/btn_top.jpg" id="next" /></div> <div class="videos" id="video"> <div class="scrollArea"> <ul> <%-- <li><a href="video/video1.html">When Selling...</a></li>--%> <li ><a href="video/video2.html">VERCOR<br>Services<br></a> </li> <%-- <li> <a href="video/video4.html">Why<br> VERCOR?</a></li> --%> <li><a href="video/video3.html">Why Hire a<br>M&A Firm</a> </li> <li><a href="video/video7.html" >Types of<br>Firms</a> </li> </ul> </div> <div class="scrollArea" > <ul> <li><a href="video/video4.html">Common<br>Pitfalls</a> </li> <li><a href="video/video5.html" >The VERCOR<br>Process</a> </li> <li><a href="video/video7.html" >Types of<br>Firms</a> </li> </ul> </div> <div class="scrollArea"> <ul> <li ><a href="video/video8.html" >When a Done<br>Deal Is Not<br> Really Done</a> </li> <li><a href="video/video5.html" >The VERCOR<br> Process</a> </li> <li><a href="video/video7.html" >Types of<br>Firms</a> </li> </ul> </div> </div> <div class="bottomBtn"> <img src="images/btn_bottom.jpg" id="prev" /> </div> </div> </div> Okay, this one is a tough one for me. On my website, Celtics Insider, where the picture of the banners are (right above the "About Us" and "Our History" sections), I want to change that image into a video. I want to have a video like ESPN, where it doesn't say "YouTube" or show any of that crap, just a little transparent "play" button (the image, not the text). I'm just wondering a few things. First off, how do I resize the video so it is 442 x 200? Also, how do I make it so the YouTube thing doesn't show up? And how do I make a little transparent play button to click on before the video starts? I want to be able to have text below as well with a link to the story, like ESPN does. If you don't know what I mean, look at ESPN: http://espn.go.com/ Hi, I'm new here. I'm also a beginner web programmer so please take it easy on me. I've taken on a job where I need to embed a video into a webpage, I think I can figure out how to do that however my employer wants this video to be slanted. I have no idea how I would slant the video using HTML/CSS/DHTML. For an example of what I am talking about please view this website: http://www.wavecam.com/ I am aware that the video on that site was embedded into Flash so I'm wondering if that is the only way to do this. Thanks in advance for any help provided. I could not, for the life of me figure out a way to phrase a google search for this. So hopefully someone here can help me. Is there any way to have an imbedded quicktime player, that will play a multitude of links? I.e. this page http://www.thenewmonarchs.com/video.html I want to code it so that every link you click on will play in the embedded video. So basically, whatever video you choose will be played through the same spot. Hopefully that makes sense? I'm terrible at wording html related questions, so please be forgiving! I would like to mount a nice looking video player to play videos on my multimedia page that is not Youtube Vimeo ect.. I am going to mount the player within an inline frame that is 600x375 and Ideally I would like it to fit that inline frame like a glove. What are some options for video players out there? hello all and merry xmas, my client needs a free/very cheap video uploading solution. he has an unlimited hosting account and a domain. he wants to create a website where he uploads daily/weekly sermons (30 - 60 min long videos) and can share it with the web. i was thinking of 1. making video > uploading to his space via ftp > embedding in html form, but i dont think its best to leave so 'many' tasks for him to deal with on a everyday basis. 2. a blog e.g. blogger which will enable him to embed videos, but this means videos arent categorized. 3. free/very cheap video hosting. google video was a favourite but since it has shut down recently he cannot use it. THE EASIEST OPTION are there any other ways of going about this? he is a total beginner to internet and its programming aspects. any help appreciated What's Up? OK, So im using. Code: <object width="331" height="159"> <param name="movie" value="background.flv"> <embed src="background.flv" width="800" height="600"> </embed> </object> to display a flv video on my webpage, but i also want to display a image and two textboxes over the top of that video. Is it possible? if so how? Thanks Bye. Im sure this question has been asked many a time so sorry for asking it again, i have my own web site and would like to add a video section were people can upload clips as well as myself, can someone give me the html code for doing this. Thanks |