gpt4 book ai didi

javascript - 通过单击目标循环渐变方向

转载 作者:行者123 更新时间:2023-12-01 00:02:24 24 4
gpt4 key购买 nike

我需要通过单击目标来循环所有八个渐变方向,如下所示:

$('.targ').on('click', function() {
let a = $(this).css('background').split(',')[0];
console.log(a); // I need `to top` here
if (a == 'to top') {
a = 'to top right'
} else if (a == 'to top right') {
a = 'to right'
} else if (a == 'to right') {
a = 'to right bottom'
}
// and so on
$(this).css('background', 'linear-gradient' + new_value);
});
.targ {
width: 54px;
height: 54px;
cursor: pointer;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class='targ' style='background: linear-gradient(to top,red,yellow)'></div>

有什么帮助吗?

最佳答案

您可以使用background-image访问linear-gradient值。

$('.targ').on('click', function() {
let direction = $(this).css('background-image').split(',')[0].slice(16);
const gradientColors = $(this).css('background-image').split(',').slice(1);

if (direction == 'to top') {
direction = 'to top right'
} else if (direction == 'to top right') {
direction = 'to right'
} else if (direction == 'to right') {
direction = 'to right bottom'
}

$(this).css('background', 'linear-gradient(' + direction + ',' + gradientColors.join(','));
});
.targ {
width: 54px;
height: 54px;
cursor: pointer;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div class='targ' style='background: linear-gradient(to right,red,yellow)'></div>

关于javascript - 通过单击目标循环渐变方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60628461/

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