This file contains hidden or 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
/** | |
* Полноэкранный просмотр телеканала | |
* @constructor | |
*/ | |
function BtvFullScreen() | |
{ | |
/** | |
* Верстка экрана - главный div | |
* @type {$.<div>} | |
*/ |
This file contains hidden or 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
//.... | |
options : { | |
boss : true, | |
eqeqeq : true, | |
evil : true, | |
expr : true, | |
eqnull: true, | |
forin : true, | |
immed : true, | |
loopfunc : true, |
This file contains hidden or 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 () { | |
return { | |
block: 'b-weather-grid', | |
tag: null, | |
content: [ | |
{ | |
block: 'jst', | |
before: 'obj.forEach(function(item) {', | |
content: [ | |
{ |
This file contains hidden or 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 snowmax = 50; | |
var snowcolor = ["#aaaacc", "#ddddff", "#ccccdd", "#f3f3f3", "#f0ffff"]; | |
var snowtype = "Times"; | |
var snowletter = ["❄", "❅", "❉"]; | |
var sinkspeed = 0.6; | |
var snowmaxsize = 30; | |
var snowminsize = 8; | |
var snowingzone = 1; | |
var snow = []; | |
var timer; |
This file contains hidden or 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
// loading techs libraries | |
var techs = { | |
// essential | |
fileProvider: require('enb/techs/file-provider'), | |
fileMerge: require('enb/techs/file-merge'), | |
files: require('enb/techs/files'), | |
//deps: require('enb/techs/deps'), | |
bemdeclFromBemjson: require('enb/techs/bemdecl-from-bemjson'), | |
depsOld: require('enb/techs/deps-old'), |
This file contains hidden or 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 lang="en"> | |
<meta charset="UTF-8"> | |
<title></title> | |
</head> | |
<body> | |
<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" | |
width="640" | |
height="480" |
This file contains hidden or 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 resize (cb) { | |
if (index === images.length) { | |
cb(); | |
return; | |
} | |
var img = images[index++]; | |
gm(img).resize(70, 70) | |
.borderColor('transparent') | |
.border(2, 2) |
This file contains hidden or 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
setTimeout(function() { | |
var div = document.createElement('DIV'); | |
div.style.display = 'block'; | |
div.style.width = '400px'; | |
div.style.height = '400px'; | |
div.style.top = '10px'; | |
div.style.left = '10px'; | |
div.style.position = 'absolute'; | |
div.style.position = 'absolute'; |
This file contains hidden or 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 id="id_1"> | |
<div class="class_1">TEXT_1</div> | |
<div id="id_2" class="class_1">TEXT_2</div> | |
</div> | |
*/ | |
div | |
{ | |
color: black; | |
} |
This file contains hidden or 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 lang="en"> | |
<meta charset="UTF-8"> | |
<title></title> | |
<style> | |
body { | |
background: #000000; | |
} | |
</style> |