Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- Analogic Clock -->
- <Var name="_hour_angle" expression="#hour12*30+#minute/2" />
- <Var name="_minute_angle" expression="#minute*6" />
- <Var name="_second_angle" expression="#second*6" />
- <Group name="relogio" x="#_cx" y="#_cy">
- <Image name="bg" src="r2/bg.png" align="center" alignV="center" >
- <!--<SizeAnimation>
- <Size w="#bg.bmp_width" h="#bg.bmp_height" time="0" />
- <Size w="#bg.bmp_width" h="#bg.bmp_height*2" time="500" />
- <Size w="#bg.bmp_width*2" h="#bg.bmp_height" time="1000" />
- <Size w="#bg.bmp_width" h="#bg.bmp_height" time="1500" />
- </SizeAnimation>-->
- </Image>
- <Image centerX="19" centerY="119" src="r2/h.png" align="center" alignV="center" angle="#_hour_angle" />
- <Image centerX="19" centerY="119" src="r2/m.png" align="center" alignV="center" angle="#_minute_angle" />
- <Image centerX="19" centerY="119" src="r2/s.png" align="center" alignV="center" angle="#_second_angle" />
- </Group>
- <!-- End Analogic Cloc -->
- <!-- Buttom Unlock Screen -->
- <Button x="0" y="0" w="#screen_width" h="#screen_height">
- <Triggers>
- <Trigger action="double">
- <ExternCommand command="unlock" delay="500" />
- </Trigger>
- <Trigger action="up">
- <Command target="relogio.animation" value="play" />
- </Trigger>
- <Trigger action="down" />
- <Trigger action="move" />
- </Triggers>
- </Button>
- <!-- Buttom Unlock Screen -->
- <!-- Zoom -->
- <Var name="_zoom">
- <VariableAnimation>
- <AniFrame value="0" time="0" />
- <AniFrame value="3" time="1000" />
- </VariableAnimation>
- </Var>
- <-- End Zoom -->
- <!-- Formated Data -->
- <VarArray type="string">
- <Vars>
- <Var name="dia" index="#day_of_week-1"/>
- </Vars>
- <Items>
- <Item value="Domingo"/>
- <Item value="Segunda"/>
- <Item value="Terca"/>
- <Item value="Quarta"/>
- <Item value="Quinta"/>
- <Item value="Sexta"/>
- <Item value="Sabado"/>
- </Items>
- </VarArray>
- <VarArray type="string">
- <Vars>
- <Var name="mes" index="#month"/>
- </Vars>
- <Items>
- <Item value="Janeiro"/>
- <Item value="Fevereiro"/>
- <Item value="Março"/>
- <Item value="Abril"/>
- <Item value="Maio"/>
- <Item value="Junho"/>
- <Item value="Julho"/>
- <Item value="Agosto"/>
- <Item value="Setembro"/>
- <Item value="Outubro"/>
- <Item value="Novembro"/>
- <Item value="Dezembro"/>
- </Items>
- </VarArray>
- <Time src="images/n/n.png" x="#_cx" y="#_cy" align="center" alignV="center"/>
- <DateTime format="dd/MM/yyyy EEEE" x="#_cx" y="#_cy+64" align="center" alignV="top" size="32" color="#ffffff"/>
- <Text format="%s, %d de %s de %d" paras="@dia,#date,@mes,#year" x="350" y="#_cy+150" color="#ffffff" size="32" align="center"/>
- <!-- End Formated Data -->
- <!-- Texto correndo na tela -->
- <Text x="150" y="950" multiLine="false" color="#ffffff" w="400" bold="true" marqueeSpeed="80" marqueeGap="8" size="32" text="Lorem Ipsum é simplesmente uma simulação de texto da indústria tipográfica e de impressos, e vem sendo utilizado desde o século XVI, quando um impressor desconhecido pegou uma bandeja de tipos e os embaralhou para fazer um livro de modelos de tipos."/>
- <!-- End Texto correndo na tela -->
- <!-- Template Unlocker Slide Up -->
- <Image name="arrow" x="#screen_width/2" src="arrow.png" y="#screen_height-175+18" align="center">
- <PositionAnimation>
- <Position x="0" y="0" time="0" />
- <Position x="0" y="-15" time="1500" />
- <Position x="0" y="-15" time="1700" />
- <Position x="0" y="0" time="3200" />
- <Position x="0" y="0" time="100000000000000" />
- </PositionAnimation>
- <AlphaAnimation>
- <Alpha a="0" time="0" />
- <Alpha a="250" time="1500" />
- <Alpha a="250" time="1700" />
- <Alpha a="0" time="3200" />
- <Alpha a="0" time="100000000000000" />
- </AlphaAnimation>
- </Image>
- <Text name="guide" x="#screen_width/2" y="#screen_height-185+18" align="center" textExp="@slider_to_unlock" color="#ffffff" size="40">
- <AlphaAnimation>
- <Alpha a="0" time="0" />
- <Alpha a="0" time="2900" />
- <Alpha a="255" time="3200" />
- <Alpha a="255" time="100000000000000" />
- </AlphaAnimation>
- </Text>
- <Unlocker name="unlocker" bounceInitSpeed="2000" bounceAcceleration="3000" alwaysShow="true">
- <StartPoint x="0" y="#screen_height-225" w="#screen_width-255" h="225">
- </StartPoint>
- <EndPoint x="-#screen_width" y="-225" w="3*#screen_width" h="#screen_height-150">
- <Trigger>
- <VariableCommand name="bounce_flag" expression="1"/>
- <Command target="bounce_offset.animation" value="play"/>
- <VariableCommand name="un_flag" expression="1"/>
- <Command target="un_offset.animation" value="play"/>
- </Trigger>
- </EndPoint>
- </Unlocker>
- <!-- Template Unlocker Slide Up -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement