gravier_app/app/assets/javascripts/coming.js.coffee
2017-09-21 13:02:26 +02:00

38 lines
403 B
CoffeeScript

#= require jquery
#= require jquery_ujs
@resize = () ->
$(".with_ratio").each ->
ratio = parseFloat($(this).data("ratio"))
height = $(this).width()*ratio
$(this).css("height",height+"px")
$("#logo").css('margin-top': (($(window).height()-($("#logo").outerHeight()+0))/ 2-10)+'px')
$ ->
$(window).on "resize", ->
resize()
resize()