Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
tothemoon
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
13
Issues
13
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
tothemoon
Commits
406970d7
Commit
406970d7
authored
Jun 20, 2016
by
Taddeüs Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Give stars random distance and animate basd on distance
parent
e585d015
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
8 deletions
+9
-8
poll.coffee
poll.coffee
+9
-8
No files found.
poll.coffee
View file @
406970d7
...
...
@@ -21,6 +21,7 @@ stars = for _ in [1..numstars]
size
=
rand
min_star_size
,
max_star_size
red
=
green
=
rand
180
,
255
star
=
document
.
createElement
'div'
star
.
distance
=
rand
10
,
100
star
.
style
.
right
=
x
+
'%'
star
.
style
.
top
=
y
+
'%'
star
.
style
.
width
=
size
+
'px'
...
...
@@ -40,8 +41,9 @@ star_heights = (star.style.height for star in stars)
warp
=
->
# first stretch stars to create accelerating feel
Velocity
stars
,
{
width
:
'500px'
},
for
star
in
stars
Velocity
star
,
{
width
:
"
#{
star
.
distance
*
0.35
}
%"
},
{
duration
:
1000
,
easing
:
'ease-in'
,
complete
:
->
document
.
body
.
className
=
'excited'
...
...
@@ -49,8 +51,7 @@ warp = ->
# then shift
for
star
in
stars
amt
=
rand
0
,
20
Velocity
star
,
{
right
:
"+=
#{
amt
}
%"
},
{
duration
:
400
}
Velocity
star
,
{
marginRight
:
"
#{
star
.
distance
*
0.7
}
%"
},
{
duration
:
400
}
Velocity
star
,
'reverse'
,
{
duration
:
1000
}
# while stars shift, the spaceship goes back a little bit, then launches
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment