zoukankan      html  css  js  c++  java
  • 多媒体播放系统案例

    <!--程序main.html-->
    <html>
      <head>    <title>多媒体播放系统</title>  </head>
       <frameset rows="80,*">
           <frame src="top.html"name="top"scrolling="no">
           <frameset cols="140,*">
              <frame src="left.html"name="left"scrolling="no">
              <frame src="right.html"name="right"scrolling="auto">
           </frameset>
       </frameset>
    </html>
    
    
    <!--程序top.html-->
    <html>
      <head>    <title>页面标题</title>  </head>  
      <body>
      <center><h1>多媒体播放系统</h1>
      </center>
      </body>
    </html>
    
    
    <!--程序left.html-->
    <html>
      <head>    <title>菜单页面</title>  </head>  
      <body>
      <br><br><br>
      <p><a href="image.html"target="right">图像显示</a></p>
      <p><a href="view.html"target="right">视频播放</a></p>
      <p><a href="sound.html"target="right">音乐播放</a></p>
      </body>
    </html>
    
    
    <!--程序right.html-->
    <html>
      <head>    <title>信息显示页面</title>  </head>  
      <body background="image/big.jpg">    
      </body>
    </html>
    
    
    <!--程序image.html-->
    <html>
    <head>    <title>插入图片</title>  </head>  
      <body>
    雪景!<img src="imgxuejing.gif"alt="雪景"width="200"height="150"align="left">
      </body>
    </html>
    
    
    <!--程序sound.html-->
    <html>
      <head>    <title>音乐无限</title>  </head>  
      <body>
       <br><br>
       <h2 align="center">牵丝戏   </h2>
       <img align="left"src="img/big.jpg"width="200"height="200"alt="牵丝戏">
       <bgsound src="img/牵丝戏。mp3"loop="1">
      </body>
    </html>
    
    
    <!--程序view.html-->
    <html>
      <head>    <title>插入视频</title>  </head>
      
      <body>
       因为爱情<br><br>
       <img dynsrc="img/aiqing。wmv"loop="3">
      </body>
    </html>
    

      

    时间最会骗人,但也能让你明白,这个世界上没有什么是不能失去的,留下的尽力珍惜,得不到的都不重要
  • 相关阅读:
    【转】【SEE】基于SSE指令集的程序设计简介
    【转】【Asp.Net】asp.net服务器控件创建
    ControlTemplate in WPF ——ScrollBar
    ControlTemplate in WPF —— Menu
    ControlTemplate in WPF —— Expander
    ControlTemplate in WPF —— TreeView
    ControlTemplate in WPF —— ListBox
    ControlTemplate in WPF —— ComboBox
    ControlTemplate in WPF —— TextBox
    ControlTemplate in WPF —— RadioButton
  • 原文地址:https://www.cnblogs.com/www-x/p/7686124.html
Copyright © 2011-2022 走看看