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
CSS3 Правило @keyframes | |
http://uroki-css.ru/cssref/css3_pr_keyframes.php | |
========================================================= | |
@keyframes blinkRed { | |
0%, 100% { color: rgba(0, 0, 0, 0.87); } | |
50% { color: rgba(255, 0, 0, 1); } | |
} |
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
============================================================================ | |
создание своей библиотеки | |
// my lib | |
var base_param = (function() { | |
var module = {} | |
// в параметрах переменные | |
module.init = function(first, second) { |
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
…or create a new repository on the command line | |
echo "# donaulab" >> README.md | |
git init | |
git add README.md | |
git commit -m "first commit" | |
git remote add origin https://github.com/alex28742/donaulab.git | |
git push -u origin master | |
…or push an existing repository from the command line |
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
<?=GetMessage("MENU_TITLE")?> включение текстовой области | |
в файле lang/ru это выглядит как : $MESS["MENU_TITLE"]="Какое-то описание"; | |
Макросы для index.php | |
========================================================================== |
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
1 |
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
gdg |
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
установка sublime-text | |
http://www.sublimetext.com/docs/3/linux_repositories.html#apt | |
sudo snap install sublime-text --classic | |
============================================================================================================ | |
решение проблемы со звуком |
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
JQuery | |
Методы | |
===================== | |
.on('click',function(){});// обработчик событий | |
.eq(0);// взятие элемента по индексу | |
.text("string") - вставляем текстовое содержимое в нужный элемент | |
.change() - обработчик на изменение состояния элеменна | |
Может быть вызван принудительно.... |
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
==================================================================================================== | |
jQuery удаление ссылки из элемента | |
$(document).ready(function() { | |
$('.base-menu.type3 .parent > ul').css('display', 'block'); | |
$('.base-menu.type3 .parent > a').removeAttr( 'href' ); | |
}); | |
==================================================================================================== |
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
A/* font-family: "RobotoRegular"; */ | |
@font-face { | |
font-family: "RobotoRegular"; | |
src: url("../fonts/RobotoRegular/RobotoRegular.eot"); | |
src: url("../fonts/RobotoRegular/RobotoRegular.eot?#iefix")format("embedded-opentype"), | |
url("../fonts/RobotoRegular/RobotoRegular.woff") format("woff"), | |
url("../fonts/RobotoRegular/RobotoRegular.ttf") format("truetype"); | |
font-style: normal; | |
font-weight: normal; | |
} |