daGrevis Posted May 23, 2009 Report Share Posted May 23, 2009 Sveiki! Vēlējos izveidot ko līdzīgu šim ( http://www.dotastrategy.com/ ) side menu (sānā, saprotams), bet nesaprotu, kurš kods ir tieši tam menu (viss tur pārāk haotiski). Nav kas tamlīdzīgs jau gatavs? :) // Ar cienu, daGrevis. Quote Link to comment Share on other sites More sharing options...
0 marcis Posted May 24, 2009 Report Share Posted May 24, 2009 div + position: aboslute + js Elementārs Js varētu izskatīties šādi, ja lieto jQuery var boxTop = '100px'; $(window).scroll(function (){ $("#mySidebar").css("top", boxTop); }); Un visa problēma. Protams, priekš UI var kādu efektiņu uzlikt. Quote Link to comment Share on other sites More sharing options...
0 indoom Posted May 25, 2009 Report Share Posted May 25, 2009 (edited) var boxTop = 100; $(window).scroll(function (){ $("#mySidebar").css("top", $(window).scrollTop + boxTop); }); EDIT: noņēmu px pie var Edited May 25, 2009 by indoom Quote Link to comment Share on other sites More sharing options...
0 marcis Posted May 25, 2009 Report Share Posted May 25, 2009 My bad var boxTop = 100; $(window).scroll(function (){ var newTop = $(window).scrollTop + boxTop; $("#mySidebar").css("top", newTop+'px'); }); Quote Link to comment Share on other sites More sharing options...
0 indoom Posted May 25, 2009 Report Share Posted May 25, 2009 tos px nemaz nepiefiksēju :) Pielaboju savu postu. Ja kas jQueryijam nav vajadzīgs px rakstīt .css() funkcijā, px ir defaultā. Quote Link to comment Share on other sites More sharing options...
Question
daGrevis
Sveiki!
Vēlējos izveidot ko līdzīgu šim ( http://www.dotastrategy.com/ ) side menu (sānā, saprotams), bet nesaprotu, kurš kods ir tieši tam menu (viss tur pārāk haotiski). Nav kas tamlīdzīgs jau gatavs? :)
// Ar cienu, daGrevis.
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.