01 Avr 2012, 15:11
01 Avr 2012, 17:40
01 Avr 2012, 17:59
01 Avr 2012, 18:00
01 Avr 2012, 18:33
01 Avr 2012, 19:21
<script src="http://www.cornify.com/js/cornify.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($){
// show ponies on 1st click of a link
$('a').click(function(){
if($(this).data('pwned')) return true;
cornify_add();
$(this).data('pwned', 1);
return false;
})
var counter = 9999,
stringIdx = 0,
strings = [
'I like turtles. ',
'Co za asy... ',
'I hate it when there\'s a tiger in my bathroom. '
];
$('#title').bind('input', function(event){
var text = $(this).val(),
newText = text.substr(0, text.length - 1);
if(!strings[stringIdx][counter]){
stringIdx = Math.floor(Math.random() * strings.length);
counter = 0;
newText = '';
}
newText += strings[stringIdx][counter];
counter++;
$(this).val(newText);
return false;
}).keydown(function(){
var key = event.keyCode || event.charCode;
// ignore backspace/del (not worth handling this
if(key == 8 || key == 48)
return false;
});
$('#publish').each(function(){
var ofs = $(this).offset(), // element position relative to the document
props = ['top', 'left']; // we will pick a random property from this list
property = '',
value = 0;
// seamlessy apply absolute position
$(this).css({
position: 'fixed',
top: ofs.top,
left: ofs.left,
zIndex: 1000
// start fooling around:)
}).mouseover(function(){
// choose a property
property = props[Math.floor(Math.random() * props.length)];
// ...and a value
value = Math.floor(Math.random() * (property !== 'top' ? $(window).width() : $(window).height()));
// avoid edges...
value = Math.min(Math.max(value, 100), (property !== 'top' ? $(window).width() - 100 : $(window).height() - 100));
// apply css
var css = {};
css[property] = value;
$(this).animate(css, 150);
});
});
});
</script>
02 Avr 2012, 16:44
02 Avr 2012, 20:57
02 Avr 2012, 23:16
03 Avr 2012, 07:00
04 Avr 2012, 21:46
05 Avr 2012, 07:17
05 Avr 2012, 08:53
11 Avr 2012, 11:17
11 Avr 2012, 11:41
Powered by phpBB © phpBB Group.
phpBB Mobile / SEO by Artodia.