gpt4 book ai didi

javascript - jQuery 向下切换箭头 'ontoggle'

转载 作者:行者123 更新时间:2023-12-03 11:45:08 25 4
gpt4 key购买 nike

您好,我有以下信息:FIDDLE

它本质上是一个 Accordion 切换菜单。我想做的就是在菜单切换打开后将箭头从右侧位置旋转到向下位置。菜单关闭后,我希望箭头旋转回其右侧位置。我尝试通过查找 CSS 和

transform: rotate(-90deg)

但是,箭头的位置没有改变。想法?这是<script>

//Dekstop Content
$('.content').each(function () {
var $accordian = $(this);
$accordian.find('.view').on('click', function () {
$accordian.find('.content-body').slideUp();
$accordian.find('span').css("transform", 'rotate(0deg);');
if (!$(this).next().is(':visible')) {
$(this).next().slideDown();
$(this).find('span').css({"transform": 'rotate(90deg);'})
}
});
});

最佳答案

.css 应如下所示:.css('Property-Name','Value')

试试这个代码:

//Dekstop Content
$('#content').each(function () {
var $accordian = $(this);
$accordian.find('.view').on('click', function () {
$accordian.find('.content-body').slideUp();
$accordian.find('span').css('transform','rotate(0deg)'); // Changed
if (!$(this).next().is(':visible')) {
$(this).next().slideDown();
$(this).find('span').css('transform', 'rotate(90deg)'); // Changed
}
});
});

来自维也纳的问候

关于javascript - jQuery 向下切换箭头 'ontoggle',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26089957/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com