This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
i18next.init({ | |
lng: Vue.params.i18nextLanguage, | |
resources: { | |
en: { | |
translation: { | |
'why collaborate with us': 'Why collaborate with us?', | |
'our experience, our mood, our skills': `Our experience, our mood and our multiple expertise: | |
we design and produce cross-channel strategies in an Agile manner | |
to optimize your profitability.` | |
), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Easing Functions - inspired from http://gizma.com/easing/ | |
* only considering the t value for the range [0, 1] => [0, 1] | |
*/ | |
EasingFunctions = { | |
// no easing, no acceleration | |
linear: function (t) { return t }, | |
// accelerating from zero velocity | |
easeInQuad: function (t) { return t*t }, | |
// decelerating to zero velocity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>Animooted particle parallax background</title> | |
<style id="jsbin-css"> | |
body { | |
background-color: #63BCB3; | |
font-family: Droid Sans, sans-serif; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
notification :off | |
puts "Using default guard file." | |
group :development do | |
if File.exists?("./config.rb") | |
# Time to compile! | |
puts `compass compile --time --quiet` | |
# https://github.com/guard/guard-compass | |
guard :compass do | |
watch(%r{(.*)\.s[ac]ss$}) | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(window).resize(changeorder); | |
$(document).ready(changeorder); | |
function changeorder(){ | |
//inner page reordering | |
if ($(".page-left-column").css("float") == "none" ){ | |
$( "#information-widget" ).appendTo( ".page-right-column" ); | |
} | |
if ($(".page-left-column").css("float") == "left" ){ | |
$( "#information-widget" ).prependTo( "#information-widget-container" ); |