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
<h1>Множественные карусельки jCarousel</h1> | |
<h3>Карусель проматывается по одному элементу</h3> | |
<div class="main_wrap"> | |
<div class="carousel_wrap"> | |
<ul> | |
<li><img src="http://lorempixel.com/100/101" alt=""></li> | |
<li><img src="http://lorempixel.com/100/102" alt=""></li> | |
<li><img src="http://lorempixel.com/100/103" alt=""></li> | |
<li><img src="http://lorempixel.com/100/101" alt=""></li> | |
<li><img src="http://lorempixel.com/100/102" alt=""></li> |
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
<script> | |
$(document).ready(function() { | |
if (window != top && top.cnResizeIframe) { | |
top.cnResizeIframe(document.body.offsetHeight,'cn_prodcard_modal_frm'); | |
} | |
}); | |
</script> |
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 FastSearch() { | |
$("#story").attr("autocomplete", "off"); | |
$("#story").blur(function () { | |
$("#searchsuggestions").fadeOut() | |
}); | |
$("#story").keyup(function () { | |
var a = $(this).val(); | |
if (a.length == 0) $("#searchsuggestions").fadeOut(); | |
else if (dle_search_value != a && a.length > 3) { | |
clearInterval(dle_search_delay); |
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
<?php | |
/* | |
============================================================================= | |
BlockPro 3 - Модуль для вывода блоков с новостями на страницах сайта DLE (тестировался на 9.7 и 9.8) | |
============================================================================= | |
Автор модуля: ПафНутиЙ | |
URL: http://blockpro.ru/ | |
ICQ: 817233 | |
email: [email protected] | |
============================================================================= |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>lists</title> | |
<style> | |
.topnews { | |
list-style-type: decimal; | |
} | |
</style> |
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> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="description" content=""> | |
<meta name="author" content=""> | |
<!-- Le styles --> |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Подсветка колонки при клике на ячейку</title> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script> | |
<script> | |
jQuery(document).ready(function($) { | |
$('table').on('click', 'td', function () { | |
var thisIndex = $(this).index(); |
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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Bootstrap, from Twitter</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="description" content=""> | |
<meta name="author" content=""> | |
<!-- Le styles --> |
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
<style> | |
pre,textarea{background:#fdf6e3;color:#586e75;display:block;font:normal 14px/20px Consolas,'Courier New',monospace;position:relative;text-shadow:0 1px 1px #fff;-webkit-border-radius:5px;border-radius:5px;-moz-box-shadow:inset 0 -1px 10px 0 rgba(0,0,0,0.1),inset 0 1px 0 0 rgba(0,0,0,0.5), 0 0 30px 0 rgba(255,255,255,0.5);box-shadow:inset 0 -1px 10px 0 rgba(0,0,0,0.1),inset 0 1px 0 0 rgba(0,0,0,0.5), 0 0 30px 0 rgba(255,255,255,0.5);white-space:pre-wrap;word-break:break-all;word-wrap:break-word;border-color:rgba(0,0,0,0.3);border-style:solid;border-width:30px 2px 2px;margin:20px;padding:20px;}textarea{width:650px;height:300px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}pre:after{color:#fff;content:attr(data-text);font:normal 16px/30px Consolas,'Courier New',monospace;height:30px;left:20px;position:absolute;right:20px;text-shadow:0 1px 3px rgba(0,0,0,0.7);top:-30px;}pre::-moz-selection,pre::selection{background:#073642;text-shadow:0 1px 1px #000;color:#fff;}h2 span{co |
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
<?php | |
/* | |
===================================================== | |
Автор: Олег Александрович a.k.a. Sander | |
----------------------------------------------------- | |
ICQ: 404-037-556 | |
===================================================== | |
Назначение: Автоматический вывод подкатегорий из указанной категории | |
===================================================== | |
*/ |