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
(function () { | |
'use strict'; | |
/** | |
* @author <a href="mailto:[email protected]">Konstantin Kitmanov</a> | |
* May be freely distributed under the MIT license. | |
*/ | |
function ResourceRegistry () { |
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
'use strict'; | |
var gulp = require('gulp'), | |
watch = require('gulp-watch'), | |
prefixer = require('gulp-autoprefixer'), | |
uglify = require('gulp-uglify'), | |
cssmin = require('gulp-cssmin'), | |
sass = require('gulp-sass'), | |
sourcemaps = require('gulp-sourcemaps'), | |
rigger = require('gulp-rigger'), |
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
/* reset.css */ | |
a { | |
color: black; | |
text-decoration: none; | |
font-size: 2em; | |
font-family: Zapfino; | |
} | |
/* main.css */ |
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
var Suteki = Suteki || {}; | |
Suteki.new_eventBus = (function(){ | |
var self = {}; | |
var subscriptions = {}; | |
var unsubscribeTokens = []; | |
var subscriptionPointers = []; |
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
/* | |
конкретный размер текста на боди не имеет значения | |
body {font-size: 16px}*/ | |
/* block */ | |
#q #w {font-size: 2em} | |
#w {font-size: 2em} | |
/* 1st pseudo */ | |
#w:before{ | |
display: block; |
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
body {margin: 0} | |
div { | |
width: 200px; | |
height: 200px; | |
background: khaki; | |
/* Полу-анимация: начинается в точке -delay/duration */ | |
/*transition: transform 2s linear -.75s}*/ | |
/* Анимация с отрицательным значением прогресса?..*/ | |
transition: transform 1s cubic-bezier(.5, -.45, .5, 1.45) | |
} |
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
div { | |
width: 200px; | |
height: 200px; | |
margin: auto; | |
overflow: hidden; | |
} | |
#e { | |
background-color: lightblue; | |
transform: rotate(-65deg); | |
animation: rotateCCW 10s linear infinite; |
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
div { | |
width: 200px; | |
height: 200px; | |
margin: auto; | |
overflow: hidden; | |
} | |
#e { | |
background-color: lightblue; | |
transform: rotate(-65deg); | |
animation: rotateCW 12s linear infinite; |