<param name="allowFullScreen" value="true" /> |
源文件下载: 全屏.rar
下面我们介绍Flash中的做法。
启动Flash,制作一个按钮元件,然后把按钮放到主场景中,为按钮添加代码:
on(press){ toggleFullScreen(); } |
函数toggleFullScreen()是主要来控制窗口,函数定义如下:
//Don’t scale the movie when the stage size changes Stage.scaleMode="noScale"; //Align the stage to the top left Stage.align = "TL"; //Function to toggle between fullscreen and normal size //the toggle fullscreen button calls this function when pressed function toggleFullScreen(){ //if normal size, go to fullscreen, else go to normal size if(Stage["displayState"]=="normal"){ Stage["displayState"]="fullScreen"; }else{ Stage["displayState"]="normal"; } } //Create a listener for each time the Stage is resized var resizeListener:Object = new Object(); //Called each time the stage is resized resizeListener.onResize = function () { //Move the button to the center of the screen toggleFullScreenButton._x=Stage.width/2; toggleFullScreenButton._y=Stage.height/2; } //Add the listener to Stage Stage.addListener(resizeListener); 这样就定义好了! |
当我们把上面制作的Flash插入到网页中时,具体代码如下:
<object data="你的swf文件地址"
type="application/x-shockwave-flash" width="400" height="200" > <param name="movie" value="你的swf文件地址" /> <param name="allowFullScreen" value="true" /> </object> |
Word教程网 | Excel教程网 | Dreamweaver教程网 | Fireworks教程网 | PPT教程网 | FLASH教程网 | PS教程网 |
HTML教程网 | DIV CSS教程网 | FLASH AS教程网 | ACCESS教程网 | SQL SERVER教程网 | C语言教程网 | JAVASCRIPT教程网 |
ASP教程网 | ASP.NET教程网 | CorelDraw教程网 |