Si vous avez des idées, envies particulières, je vous laisse poster les liens vers les articles ici
Budget max : ~50€ par personne, on est 4, bientôt 5 donc ~250€ au total pour notre bureau
$(function() { | |
var transitionEventsNames = 'transitionend webkitTransitionEnd oTransitionEnd MSTransitionEnd', | |
fn = function(e) { | |
$(this).off(transitionEventsNames, fn); | |
$(this).on(transitionEventsNames, fn); | |
console.log('transition', e); | |
}; | |
$('.foo').on(transitionEventsNames, fn); | |
}); |
Test gist from ST |
Black pointing triangles | |
◀ | |
▶ | |
▲ | |
▼ | |
White pointing triangles | |
◁ | |
▷ | |
△ |
define(function() { | |
var onscrollCallbacks = [], | |
onresizeCallbacks = [], | |
didScroll = false, | |
didResize = false; | |
var UI = { | |
init: function() { |
{% extends "layouts/test.twig" %} | |
@mixin for-hidpi { | |
.hidpi & { | |
@content; | |
} | |
@media only screen and (-webkit-min-device-pixel-ratio: 2), | |
only screen and ( min--moz-device-pixel-ratio: 2), | |
only screen and ( -o-min-device-pixel-ratio: 2/1), | |
only screen and ( min-device-pixel-ratio: 2), | |
only screen and ( min-resolution: 192dpi), | |
only screen and ( min-resolution: 2dppx) { |
{% block admin_nodes_datagrid_filter_online %} | |
{% include "datagrid/filter/online.twig" with {"attrs": { | |
"label": t("Statut"), | |
"field": "status", | |
"options": [ | |
{value: '', text: t("Tous")}, | |
{value: 'online', text: t("Online")}, | |
{value: 'pending', text: t("En attente")}, | |
{value: 'offline', text: t("Offline")} | |
] |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE |
Si vous avez des idées, envies particulières, je vous laisse poster les liens vers les articles ici
Budget max : ~50€ par personne, on est 4, bientôt 5 donc ~250€ au total pour notre bureau
body { | |
font-family: Helvetica neue, Helvetica, Arial, sans; | |
} | |
.good, | |
.bad { | |
margin: 20px; | |
height: 100px; | |
background: #444; | |
color: white; |