source: extensions/charlies_content/charlie_quicktime.tpl @ 3318

Last change on this file since 3318 was 3318, checked in by vdigital, 15 years ago

+ Add Charlies' content to depository

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
RevLine 
[3318]1<!-- /charlie_quicktime.tpl -->
2{*
3 If you don't plan to play Quicktime files on your web site,
4 change player by the one you want
5 Based on documentation from http://www.apple.com/quicktime/tutorials/embed.html
6*}
7{assign var="main_width" value="`$fileinfo.video.resolution_x+$by_style+$by_style`"}
8<div id="charlie" style="height: {$fileinfo.video.resolution_y}px; width:{$main_width}px; padding-top: 0px; margin-top: 20px;">
9        <div class="{$curtain}_1" style="padding-left:{$by_style}px;">
10                <div class="{$curtain}_2" style="padding-right:{$by_style}px;">
11<object id="player" CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" WIDTH="{$fileinfo.video.resolution_x}" HEIGHT="{$fileinfo.video.resolution_y}"
12        CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">
13          {if ($Charlies.showplayer==1)}<param name="Controller" VALUE="true">{/if}
14          <param name="Type" VALUE="video/quicktime">
15          {if ($Charlies.autoload==1)}<param name="Autoplay" VALUE="true">{/if}
16          <param name="TargetCache" VALUE="true">
17          <param name="Cache" VALUE="true">
18          <param name="Target" VALUE="myself">
19          <param name="Src" VALUE="{$SRC_IMG}">
20          <param name="PluginsPage" VALUE="http://www.apple.com/quicktime/download/">
21    {if ($Charlies.loop==1)}<param name="Loop" VALUE="true">{/if}
22    <param name="Scale" VALUE="ToFit">
23          {if ($Charlies.volume!='')}<param name="Volume" VALUE="{$Charlies.volume}">{/if}
24<!--[if !IE]> <-->
25          <embed PluginsPage="http://www.apple.com/quicktime/download/"
26                        {if ($Charlies.showplayer==1)}Controller="true"{/if} Type="video/quicktime" {if ($Charlies.autoload==1)}Autoplay="true"{/if}
27                        TargetCache="true" Cache="true" id="embedplayer"
28                Target="myself" Src="{$SRC_IMG}"  WIDTH="{$fileinfo.video.resolution_x}" HEIGHT="{$fileinfo.video.resolution_y}"
29                {if ($Charlies.loop==1)}Loop="true"{/if} Scale="ToFit" {if ($Charlies.volume!='')}Volume="{$Charlies.volume}"{/if}>
30<!--> <![endif]-->
31</object> <!-- embed is needed for Opera and FireFox -->
32                </div>
33        </div>
34</div>
35{html_head}
36<link rel="stylesheet" type="text/css" href="{$CHARLIES_PATH|@cat:'charlies.css'}"> 
37{/html_head}
Note: See TracBrowser for help on using the repository browser.