<?xml version="1.0" encoding="utf-8"?>
<Application>
	<AppTitle>Untitled Application</AppTitle>
	<DesignDeviceName>Samsung Galaxy Tab 7</DesignDeviceName>
	<VariablesScanned>False</VariablesScanned>
	<PageWidth>1024</PageWidth>
	<PageHeight>600</PageHeight>
	<AutoSizeWidth>False</AutoSizeWidth>
	<AutoSizeHeight>False</AutoSizeHeight>
	<HideScrollbars>False</HideScrollbars>
	<PublishPlatform>WebApp</PublishPlatform>
	<EmptyBuildFolder>False</EmptyBuildFolder>
	<CustomCSS>.container {
	 margin: 50px;
	 float: left;
	 width: 200px;
	 height: 200px;
	 perspective: 1000px;
	 user-select: none;
}
 .box {
	 width: 100%;
	 height: 100%;
	 position: relative;
	 transform-style: preserve-3d;
	 transform: translate3d(0, 0 -100px);
}
 .face {
	 border: 1px solid #666;
	 cursor: default;
	 width: 100%;
	 height: 100%;
	 position: absolute;
	 backface-visibility: hidden;
	 outline: 1px solid transparent;
	 line-height: 200px;
	 text-align: center;
	 font-size: 30px;
}
 .face.front {
	 background-color: #faa;
	 transform: translate3d(0, 0, 100px);
}
 .face.back {
	 background-color: #aaf;
	 transform: translate3d(0, 0 -100px) rotateY(180deg);
}
 .face.left {
	 background-color: #afa;
	 transform: rotateY(-90deg) translate3d(0, 0, 100px);
}
 .face.right {
	 background-color: #aff;
	 transform: rotateY(90deg) translate3d(0, 0, 100px);
}
</CustomCSS>
	<LanguageCode>en</LanguageCode>
	<MobileOSTypes>[AndroidOS,iOS,WindowsPhoneOS]</MobileOSTypes>
	<WindowState>normal</WindowState>
	<TitleBar>True</TitleBar>
	<Sizeable>True</Sizeable>
	<MaximizeBtn>False</MaximizeBtn>
	<MinimizeBtn>True</MinimizeBtn>
	<SystemMenu>True</SystemMenu>
	<ContextMenu>False</ContextMenu>
	<AlwaysOnTop>False</AlwaysOnTop>
	<ShowInTaskbar>True</ShowInTaskbar>
	<SingleInstance>False</SingleInstance>
	<ChromeKioskMode>False</ChromeKioskMode>
	<CustomBodyMetadata>&lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/gsap/latest/TweenMax.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/hammer.js/2.0.4/hammer.min.js&quot;&gt;&lt;/script&gt;
&lt;script src=&quot;https://cdn.jsdelivr.net/jquery.hammerjs/2.0.0/jquery.hammer.js&quot;&gt;&lt;/script&gt;
</CustomBodyMetadata>
	<startup>BeginJS
var $containers = $(&apos;.container&apos;);
$containers.each(function() {
  var $container = $(this),
      $box = $container.find(&apos;.box&apos;),
      width = 0,
      rotation = 0;
  $container.hammer().on(&apos;panmove panstart panend&apos;, function (event) {
    switch (event.type) {
      case &apos;panstart&apos;:
        width = $container.width();
        break;

      case &apos;panmove&apos;:
        var localX = Math.max(Math.min(event.gesture.deltaX / width, 0.5), -0.5);
        TweenLite.to($box[0], 0.3, {
          rotationY: rotation + (90 * localX)
        });
        break;

      case &apos;panend&apos;:
        var localX = Math.max(Math.min(event.gesture.deltaX / width, 0.5), -0.5);
        if (localX &gt;= 0.25) {
          rotation += 90;
        } else if (localX &lt;= -0.25) {
          rotation -= 90;
        }
        TweenLite.to($box[0], 1.5, {
          rotationY: rotation,
          ease: Elastic.easeOut
        });
        break;
    }
  });
});
EndJS</startup>
	<Components>
		<FunctionList name="Subroutines"/>
		<LibraryList name="Libraries"/>
		<PageList name="Main">
			<Components>
				<Page id="NewPage">
					<Components>
						<Container id="Container1">
							<left>32px</left>
							<top>32px</top>
							<width>960px</width>
							<height>312px</height>
							<style>border-width:1px;border-style:solid;background-color:#fff;</style>
							<html>&lt;div class=&quot;container&quot;&gt;
  &lt;div class=&quot;box&quot;&gt;
    &lt;div class=&quot;face front&quot;&gt;
      Front
    &lt;/div&gt;
    &lt;div class=&quot;face back&quot;&gt;
      Back
    &lt;/div&gt;
    &lt;div class=&quot;face left&quot;&gt;
      Left
    &lt;/div&gt;
    &lt;div class=&quot;face right&quot;&gt;
      Right
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;div class=&quot;container&quot;&gt;
  &lt;div class=&quot;box&quot;&gt;
    &lt;div class=&quot;face front&quot;&gt;
      Front
    &lt;/div&gt;
    &lt;div class=&quot;face back&quot;&gt;
      Back
    &lt;/div&gt;
    &lt;div class=&quot;face left&quot;&gt;
      Left
    &lt;/div&gt;
    &lt;div class=&quot;face right&quot;&gt;
      Right
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;

&lt;div class=&quot;container&quot;&gt;
  &lt;div class=&quot;box&quot;&gt;
    &lt;div class=&quot;face front&quot;&gt;
      Front
    &lt;/div&gt;
    &lt;div class=&quot;face back&quot;&gt;
      Back
    &lt;/div&gt;
    &lt;div class=&quot;face left&quot;&gt;
      Left
    &lt;/div&gt;
    &lt;div class=&quot;face right&quot;&gt;
      Right
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;</html>
						</Container>
					</Components>
				</Page>
			</Components>
		</PageList>
		<PageList name="Master">
			<Components>
				<Page id="MasterPage"/>
			</Components>
		</PageList>
		<PageList name="Dialog">
			<Components>
				<Page id="NewDialog">
					<Components>
						<DialogContainer id="DialogContainer1">
							<left>0px</left>
							<top>0px</top>
							<width>1024px</width>
							<height>600px</height>
							<close_button>False</close_button>
						</DialogContainer>
					</Components>
				</Page>
			</Components>
		</PageList>
	</Components>
</Application>
