Using Jquery Animation
Posted: 06 May 2011, 10:42
hi
i wanna use jQuery animation to animate the image box in the category view but nothing happend...
i think its very simple .. here is my code in head section of my page:
whats the problem?
thanks..
i wanna use jQuery animation to animate the image box in the category view but nothing happend...
i think its very simple .. here is my code in head section of my page:
Code: Select all
<script type="text/javascript">
var j= jQuery.noConflict();
j(document).ready(function(){
j(".phocagallery-box-file").mouseover(function(){
j(".phocagallery-box-file").animate({'top': '-20px'},"fast");
});
j(".phocagallery-box-file").mouseleave(function(){
j(".phocagallery-box-file").animate({'top': '0px'},"fast");
});
}); thanks..