mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-07 09:13:02 +02:00
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:
@@ -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>
|
||||
Reference in New Issue
Block a user