Easy to customize
-
I found a problem (the content of the left sidebar is always visible) with some android browsers, the Android Browser, and Next Browser.
I fixed it with :.leftmtop,.leftmbottom, #mobmenuleft{ -webkit-transform:translate(-230px); -webkit-transition:all 0.3s ease-in-out 0s; -moz-transform:translate(-230px); -moz-transition:all 0.3s ease-in-out 0s; transform:translate(-230px); transition:all 0.3s ease-in-out 0s; }
/*--------------custom-----------*/ jQuery('#mobmenu-center').click(function(event){ jQuery('.leftmtop,.leftmbottom, #mobmenuleft').toggleClass('mob_menu_left_panel_anim'); }); jQuery('body,.mob_menu_right_panel, .mob_menu_left_panel').click(function(event){ jQuery('.leftmtop,.leftmbottom, #mobmenuleft').removeClass('mob_menu_left_panel_anim'); event.stopPropagation(); });
i do it just for left panel,because it is the only i use.
Thank you , i appreciate your work.
- The topic ‘Easy to customize’ is closed to new replies.