« Utilisateur:Jd/Skin bépo/tests/geshi » : différence entre les versions
< Utilisateur:Jd | Skin bépo
m (→source) |
|||
(Une version intermédiaire par le même utilisateur non affichée) | |||
Ligne 13 : | Ligne 13 : | ||
== pre == | == pre == | ||
<div> | |||
<pre lang="javascript"> | <pre lang="javascript"> | ||
// style and animate categories | // style and animate categories | ||
Ligne 22 : | Ligne 23 : | ||
) | ) | ||
</pre> | </pre> | ||
</div> | |||
== source == | == source == | ||
Ligne 50 : | Ligne 52 : | ||
<syntaxhighlight lang="javascript"> | <syntaxhighlight lang="javascript"> | ||
// style and animate categories | |||
$(document).ready( | |||
function() { | |||
var opa = 0.6; | |||
$("#catlinks-box").animate({opacity: opa}); | |||
} | |||
) | |||
</syntaxhighlight> | |||
== syntaxhighlight avec line == | |||
<syntaxhighlight line lang="javascript"> | |||
// style and animate categories | // style and animate categories | ||
$(document).ready( | $(document).ready( |
Dernière version du 18 août 2009 à 12:35
Test de la coloration syntaxique avec geshi…
rien du tout
// style and animate categories $(document).ready( function() { var opa = 0.6; $("#catlinks-box").animate({opacity: opa}); } )
pre
// style and animate categories
$(document).ready(
function() {
var opa = 0.6;
$("#catlinks-box").animate({opacity: opa});
}
)
source
// style and animate categories
$(document).ready(
function() {
var opa = 0.6;
$("#catlinks-box").animate({opacity: opa});
}
)
source avec line
// style and animate categories
$(document).ready(
function() {
var opa = 0.6;
$("#catlinks-box").animate({opacity: opa});
}
)
syntaxhighlight
// style and animate categories
$(document).ready(
function() {
var opa = 0.6;
$("#catlinks-box").animate({opacity: opa});
}
)
syntaxhighlight avec line
// style and animate categories
$(document).ready(
function() {
var opa = 0.6;
$("#catlinks-box").animate({opacity: opa});
}
)