Доклад был прочитан 15 апреля 2014-го на РИТе.
http://share.artpolikarpov.ru/PjC6 ПДФ, 5,3 МБ
Никакое специальное приложение для проверки размеров в вёрстке, вроде ((http://xscopeapp.com/ Икс-скоупа)), у меня не прижилось. Слишком большая погрешность: | |
[email protected] | |
Правильный размер 198×68 | |
Когда мне нужно что-то проверить приблизительно, я использую стандартную маковскую скриншотилку, <tt>cmd shift 4</tt>: | |
[email protected] | |
После измерений нажимаю <tt>esc</tt>, чтобы не сохранять скриншот. |
Доклад был прочитан 15 апреля 2014-го на РИТе.
http://share.artpolikarpov.ru/PjC6 ПДФ, 5,3 МБ
$(document).ready(function() { | |
$('.js-aims').each(function () { | |
var $this = $(this); | |
$this.on($this.data('aimEvent') || 'click', function () { | |
setAim($this.data('aim')); | |
}); | |
}); | |
}); |
<div class="emerge"> | |
<img src="1.jpg"> | |
<div class="emerge-custom" id="fotorama"> | |
<img src="2.jpg"> | |
<img src="3.jpg"> | |
</div> | |
</div> |
$(document).on('click', '.js-aims', function () { | |
setAim($(this).attr('data-aim')); | |
}); |
<?php | |
// Aegea to Disqus comments converter | |
// http://help.disqus.com/customer/portal/articles/472150 | |
$url_prefix = 'http://nano.sapegin.ru/all/'; | |
$note_id = intval($_GET['id']); | |
if (empty($note_id)) exit('Empty note ID.'); |
/home/luke/Sites/aldebaran/wp-contnent/myPlugin | |
/home/luke/Sites/tatuin/wp-contnent/myPlugin |
(function ($) { | |
$.fn.shuffleChildren = function () { | |
return this.each(function () { | |
var $children = $(this).children(), | |
l = $children.length; | |
// Fisher–Yates Shuffle | |
// http://bost.ocks.org/mike/shuffle/ | |
// While there remain elements to shuffle |