Hi!
I'm rather new to js, jQuery (and this mail-list).

I'm trying to make a fancy menu using jQuery. I need some help..

This is my code so far, but I've only had sucsess with the three first lines. 
After that I don't know what is wrong..

        $(document).ready(function(){
        $('#K_meny').hover(function() {
                $('#anm').show()
                                .attr({
                                        clip:"rect(auto,auto,auto,80px)"})
                                .animate ({
                                        clip: "rect(auto,auto,auto,auto)"
                                        left: "59px"
                                        }, 1000);
                $('#K-meny li').show(100);
                $('#anm').hide();

                $('#K-meny .one').animate({
                        top: "-26px"
                        left: "48px"
                        , { queue:false, duration:3000 }
                        })
                $('#K-meny .two').animate({
                        top: "-26px"
                        left: "48px"
                        , 1000
                        })
                $('#K-meny .three').animate({
                        top: "-26px"
                        left: "48px"
                        , 1000
                        })
                });
        });     

If it helps, please focus on line 4-9. The rest is a draft. But of course, any 
guidance is appreciated.

Thanks a lot!

:) Geir, Norway

Reply via email to