当我滑开另一个菜单或再次点击箭头时,如何让箭头旋转并旋转?
JS:
//Dropdown Menu
$("a.slide-dropdown").click(function slideMenu()
{
$(this).next('ul').slideToggle();
$(this).parent().siblings().children().next('ul').slideUp();
});
//Arrows
$( ".crossRotate" ).click(function() {
//alert($( this ).css( "transform" ));
if ($(this).css( "transform" ) == 'none' )
{
$(this).css( "transform" , "rotate(-180deg)" );
}
else
{
$(this).css("transform","" ) ;
}
});
答案 0 :(得分:1)
您需要更新crossRotate click
活动。
试试这个
//Arrows
$( ".crossRotate" ).click(function() {
//alert($( this ).css( "transform" ));
$(".crossRotate").css("transform","none" ) ;
if ($(this).css( "transform" ) == 'none' )
{
$(this).css( "transform" , "rotate(-180deg)" );
}
else
{
$(this).css("transform","none" ) ;
}
});