美文网首页
Framer动效11—单身计时器

Framer动效11—单身计时器

作者: huangxiaohao | 来源:发表于2016-08-09 11:25 被阅读180次

教程地址Framer教程 | 今天怎样让自己看起来不单身?

我的实现效果

从上一次失恋开始~

Framer.Device.screen.backgroundColor="#faf"

rightHouse=new Layer

x: Align.center(100)

y: Align.center

height: 362

image: "images/heart-right.png"

leftHouse = new Layer

x: Align.center(-100)

y: Align.center()

height: 362

image: "images/heart-left.png"

flipHeart=new Layer

x: Align.center(100)

y: Align.center()

height: 362

originX: 0

image: "images/heart-right.png"

flipHeart.states.add

middle:

rotationY:-90

brightness: 140

opacity: 0.5

over:

rotationY:-180

brightness: 93

flipHeart.states.animationOptions=

time:0.4

curve: "linear"

showLoveNames=new Layer

backgroundColor: "#faf"

x:164

y: 1301

width: 1208

height: 160

html: "我和影子一共在一起"

style:

textAlign:"center"

fontSize:"80px"

lineHeight:"160px"

showLove=new Layer

backgroundColor: "#faf"

x: 164

y: 1461

width: 1208

height: 160

html: "love"

style:

textAlign:"center"

fontSize:"100px"

lineHeight:"160px"

start=new Date(2015,3,11)

startSecond=start.getTime()/1000

handle =() ->

flipHeart.states.switch("middle")

Utils.delay 0.4,->

flipHeart.states.switch("over")

Utils.delay 0.9,->

flipHeart.states.switchInstant("default")

now =new Date()

nowSecond=now.getTime()/1000

diffDay=parseInt((nowSecond-startSecond)/3600/24)

diffHour=parseInt((nowSecond-startSecond)/3600%24)

diffMintue=parseInt((nowSecond-startSecond)/60%60)

diffSecond=parseInt((nowSecond-startSecond)%60)

showLove.html=diffDay+"天"+diffHour+"小时"+diffMintue+"分钟"+diffSecond+"秒"

handle()

Utils.interval 1,->

handle()

相关文章

  • Framer动效11—单身计时器

    教程地址Framer教程 | 今天怎样让自己看起来不单身? 我的实现效果 从上一次失恋开始~ Framer.Dev...

  • Framer动效15

    今天照着framer官网的视频做了一个Facebook的Group的动效。 我们首先来看动效的几个点: Group...

  • Framer 动效15

    传送门 http://www.jianshu.com/p/dabd180b3620

  • Framer动效06

    # Import file "动效05" (sizes and positions are scaled 1:2)...

  • Framer动效03

    Screen.backgroundColor="#2dd7aa" scroll=new ScrollCompone...

  • Framer动效04

    Screen.backgroundColor="#7ddd11" page=new PageComponent x...

  • Framer动效02

    程序如下: Screen.backgroundColor="#28AFFA" constraints=new La...

  • Framer动效05

    Screen.backgroundColor="#877dd7" LayerA=new Layer width: ...

  • Framer动效07

    自己动手做的第一个动效,没有再跟着教程啦 这个动效是在安卓手机上刷知乎遇到的 很简单的material desig...

  • Framer动效09

    Screen.backgroundColor="fff" layerA=new Layer width:20 he...

网友评论

      本文标题:Framer动效11—单身计时器

      本文链接:https://www.haomeiwen.com/subject/enfdsttx.html