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
<html> | |
<head> | |
<style> | |
body { | |
background: #ddd; | |
} | |
canvas { | |
background: #fff; | |
} | |
</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
/// AUTHOR : Gaetan Renaudeau, http://gaetanrenaudeau.fr/, pro at grenlibre (DoT) fr | |
(function($){ | |
if(!jQuery) return; // we need jQuery | |
var pollWidget = $('.widget_polls-widget') | |
if(pollWidget.size() && $('input:visible', pollWidget).size()) { | |
var clone = $(pollWidget).clone().removeClass('widget_polls-widget'); | |
$('a', clone).remove(); | |
$('input', clone).click(function(){ | |
$('.widget_polls-widget input[value='+$(this).val()+']').attr('checked', 'checked'); |
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>CSS Transition demo</title> | |
<link rel="stylesheet" type="text/css" media="screen" href="main.css" /> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> | |
<style> | |
/* slide transition part */ | |
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> | |
<script type="text/javascript" src="jquery-1.4.2.min.js"></script> | |
<style> | |
body { | |
color: #333; | |
background: #EEE; | |
margin: 30px; | |
} |
NewerOlder