Sylvia theme: .content reviewed including hover/active backgrounds.

Some additional jQuery fade in/out functions 

git-svn-id: http://piwigo.org/svn/trunk@2510 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
vdigital
2008-09-08 20:46:11 +00:00
parent 85ea11bf35
commit b5c5a2aeae
15 changed files with 46 additions and 16 deletions
+11 -1
View File
@@ -60,4 +60,14 @@
</ul>
</div>
</div>
<script type="text/javascript">// <![CDATA[
{literal}$(document).ready(function() {
$("img.thumbnail").fadeTo("slow", 0.6); // Opacity on page load
$("img.thumbnail").hover(function(){
$(this).fadeTo("slow", 1.0); // Opacity on hover
},function(){
$(this).fadeTo("slow", 0.6); // Opacity on mouseout
});
});{/literal}
// ]]>
</script>