I know how to do this for webkit browsers but i'm kinda stuck in firefox. The code below just animate the top-left corner while the rest just snap into places.

Here's my code:

$('img').hover(function(){


    $(this).animate({

        MozBorderRadius: '50px 50px 0px 0px'}, 900);
                                                       },function(){

                                                           $(this).animate({
        MozBorderRadius: '25px 25px 0px 0px' }, 900);
                                                       });
link|improve this question

41% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Looks like the problem is that you are using the shortcut that has all four corners in one definition, when you need to define them separately

Try this out:

$('img').hover(function(){
    $(this).animate({
        "MozBorderRadiusTopleft": '50px',
        "MozBorderRadiusTopright": '50px'
    }, 900);
},function(){
    $(this).animate({
        "MozBorderRadiusTopleft": '25px',
        "MozBorderRadiusTopright": '25px'
    }, 900);
});
link|improve this answer
thanks pete! :) – p0larBoy Feb 2 '10 at 5:01
feedback

MozBorderRadius is a property I'm not familiar with, perhaps it is deprecated? Try using -moz-border-radius instead.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.