Skip to content
This repository has been archived by the owner on Jul 12, 2020. It is now read-only.

Commit

Permalink
updated features
Browse files Browse the repository at this point in the history
  • Loading branch information
Leonid Medovyy committed Dec 16, 2019
1 parent 67bb017 commit 93e9afc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 14 deletions.
9 changes: 4 additions & 5 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 8 additions & 9 deletions frontend/js/feature_cover.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
HemisphericLight(:diffuse="hemispheric_light")
Entity(:position="[0, 0, 5]")
PointLight(:diffuse="point_light")
HemisphericLight(:diffuse="hemispheric_light")
template(v-for="x in squares")
template(v-for="y in squares")
Box(v-for="z in squares" :position="[x, y, z]" :key="`${x},${y},${z}`")
Expand All @@ -21,18 +20,18 @@
<script lang="coffee">
export default {
data: ->
background: '#111'
background: '#fff'
hemispheric_light: '#fff'
hemispheric_specular_light: '#000'
point_light: '#ccc'
point_light: '#000'
square_color: "#000"
squares: [0, 2, -2 ]
first_color: '#008080'
second_color: '#008080'
third_color: '#008080'
fourth_color: '#008080'
fifth_color: '#008080'
sixth_color: '#008080'
first_color: '#0E6EB8'
second_color: '#0E6EB8'
third_color: '#0E6EB8'
fourth_color: '#0E6EB8'
fifth_color: '#0E6EB8
sixth_color: '#0E6EB8'
mounted: ->
$('.overlay').css('transition', 'all 2.5s')
$('.overlay').css('opacity', 0.1)
Expand Down

0 comments on commit 93e9afc

Please sign in to comment.