10 lines
401 B
JavaScript
10 lines
401 B
JavaScript
$(document).ready(function () {
|
|
$("a[rel^='prettyPhoto']").prettyPhoto({
|
|
animationSpeed: 'normal', /* fast/slow/normal */
|
|
opacity: 1, /* Value betwee 0 and 1 */// show_title: true, /* true/false */
|
|
allow_resize: false, /* true/false */
|
|
theme: 'dark_square', /* light_rounded / dark_rounded / light_square / dark_square */
|
|
social_tools:''
|
|
});
|
|
});
|