Синхронизация настроек Sublime Text 3
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
.delay(1000); задержка 1000 мс | |
.hide(1000); скрыть за 1000 мс | |
.show(); показать | |
.animate({'width':'200px'}, 1000); изменить ширину за 1000 мс | |
.slideUp(1000); показать за 1000 мс | |
.slideDown(1000); скрыть за 1000 мс | |
.fadeIn(2000) показать за 2000 мс | |
.fadeOut(2000) скрыть за 2000 мс | |
.addClass('class'); добавить класс | |
.removeClass('class'); удалить класс |
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
echo ('Хочу написать "здесь" как я тебя люблю!'); | |
echo ('Хочу написать \'здесь\' как я тебя люблю!'); |
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
Ctrl + N Новый файл | |
Ctrl + G Перейти к строке | |
Alt+ ↑ / ↓ Перемещение строки вверх / вниз | |
Ctrl+Shift+\ Перейти к соответствующей скобке | |
Ctrl+] / [ Отступ / outdent линия | |
Ctrl+Shift+[ Скрыть (свернуть) область | |
Ctrl+Shift+] Развернуть (разворачивать) регион | |
Alt+Z Переключить перенос слов | |
Alt+ ← / → Вернуться назад / вперед | |
Ctrl+F Найти |
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
define ("CONSTANT", "Hello world."); | |
echo CONSTANT; // выводит "Hello world." |
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
Добавить в начале строки Найти ^ Заменить 0; | |
^\W пробел в начале строки | |
\d{8} найти 8 цыфр подряд | |
^\d{4};92 найти В НАЧАЛЕ ЧЕТЫРЕХзначные числа после которы есть ;92 | |
[^=]*$ любые символы, кроме "=" | |
;(.*) все после ; | |
(\b\S+\b)(?=.*\1) повторение на строке | |
\d [0-9] Цифровой символ |
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
CTRL+SHIF+D - Показать историю буфера обмена (работает только в открытом текстовом файле, управление осуществляется клавишами UP и DOWN) | |
CTRL+SHIFT+(UP|DOWN) - Копировать текущую строку | |
CTRL+SHIFT+V - вставка с форматированием | |
СTRL+SHIFT+C - комментирование выделено блока | |
ALT-SHIFT+(UP|DOWN) - переместить текущую строку вверх или вниз, работает также влево и вправо | |
CTRL+SHIFT-R - множественное выделение курсором, вид выделения - прямоугольник | |
Множественное выжеление CTRL+SHIFT+клик | |
Множественное выжеление CTRL+J |
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
jQuery(function($){ | |
$(document).mouseup(function (e){ // событие клика по веб-документу | |
var div = $("#popup"); // тут указываем ID элемента | |
if (!div.is(e.target) // если клик был не по нашему блоку | |
&& div.has(e.target).length === 0) { // и не по его дочерним элементам | |
div.hide(); // скрываем его | |
} | |
}); | |
}); |
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"> | |
<title>Всплывающая подсказка</title> | |
<style> | |
meter { | |
position: relative; | |
} | |
meter:hover::after { |
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
$ser = $_SERVER['DOCUMENT_ROOT'] . '/carparts'; | |
$des = $_SERVER['DOCUMENT_ROOT'] . '/Admin'; | |
copydirect($ser, $des, 1); | |
function copydirect($source, $dest, $over = false) | |
{ | |
if (!is_dir($dest)) | |
mkdir($dest); |