gpt4 book ai didi

javascript - 使用 JS 更改 CSS RGBA 背景颜色的 alpha 值

转载 作者:行者123 更新时间:2023-11-30 11:24:30 27 4
gpt4 key购买 nike

我的 CSS 中有这个:

.body {
width: 150px;
height: 40px;
padding: 20px;
background-color: rgba(255,0,0,1);
text-align: center;
border: 1px solid black;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
display: block;
top: 50px;
font-weight: bold;
font-size: 25px;
}

我想在用户点击按钮时更改 background-color 的不透明度 (alpha):

<button onclick="lessColour()">-Colour</button>

我如何创建这个 lessColour() 函数,以便每次用户点击按钮时,background-coloralpha减少 0.1?

顺便说一句,我必须用 3 个不同的元素来做到这一点。

最佳答案

您需要创建一个接受两个参数的函数:

  • 您要更改其background-color 的不透明度的一个或多个元素,以便您可以同时在多个元素中进行更改。

  • 您要更改 alpha 的数量(如果为正则增加,如果为负则减少)。

为了获得当前的 alpha 值,您需要:

  1. 使用 getComputedStylegetPropertyValue获取当前的 background-color 值。

  2. 解析该值以仅获取 alpha 组件。

  3. 使用 element.style.backgroundColor 更新元素的 background-color

总的来说,它看起来像这样:

// First, get all your elements:

const a = document.getElementById('a');
const b = document.getElementById('b');
const c = document.getElementById('c');


// And the buttons to update them:

const decreaseA = document.getElementById('decrease-a');
const decreaseAB = document.getElementById('decrease-ab');
const decreaseABC = document.getElementById('decrease-abc');

const increaseA = document.getElementById('increase-a');
const increaseAB = document.getElementById('increase-ab');
const increaseABC = document.getElementById('increase-abc');

const decreaseAll = document.getElementById('decrease-all');
const increaseAll = document.getElementById('increase-all');


// Define your function:

function updateColor(elements, change) {

// Make sure elements is always an Array, so that you can call the
// function with either an Array of elements or a single one (without
// having to wrap it in an Array yourself.

elements = Array.isArray(elements) ? elements : [elements];

// Process all elements:

elements.forEach(element => {
// Get the current background-color value:
const value = getComputedStyle(element).getPropertyValue("background-color");

// Get all color components (alpha may not be there if = 1):
const parts = value.match(/[\d.]+/g);

// If alpha is not there, add it:
if (parts.length === 3) {
parts.push(1);
}

// Modify alpha:
parts[3] = Math.min(1, Math.max(0, parseFloat(parts[3]) + change));

// Set the element's text to be the current alpha value (just for the example):
element.innerText = parts[3].toFixed(2);

// Apply new value:
element.style.backgroundColor = `rgba(${ parts.join(',') })`;
});
}


// Add event handlers for the buttons that will call the function with the right params:

decreaseA.onclick = () => updateColor(a, -0.1);
decreaseAB.onclick = () => updateColor(b, -0.1);
decreaseABC.onclick = () => updateColor(c, -0.1);

increaseA.onclick = () => updateColor(a, 0.1);
increaseAB.onclick = () => updateColor(b, 0.1);
increaseABC.onclick = () => updateColor(c, 0.1);

decreaseAll.onclick = () => updateColor([a, b, c] , -0.1);
increaseAll.onclick = () => updateColor([a, b, c], 0.1);


// Set the initial text inside each sample without modifying the color (just for the example):

updateColor([a, b, c] , 0);
body {
margin: 0;
font-family: monospace;
}

.samples {
overflow: hidden;
}

.buttons {
overflow: hidden;
border: 2px solid #FFF;
}

span {
float: left;
width: 33.33333333%;
line-height: 100px;
height: 100px;
text-align: center;
}

button {
float: left;
width: 33.33333333%;
background: #000;
color: #FFF;
border: none;
line-height: 32px;
font-family: monospace;
outline: none;
border: 2px solid #FFF;
}

#decrease-all,
#increase-all {
width: 50%;
}

#a { background: rgba(255, 0, 0, 1); }
#b { background: rgba(0, 255, 0, 1); }
#c { background: rgba(0, 0, 255, 1); }
<div class="samples">
<span id="a"></span>
<span id="b"></span>
<span id="c"></span>
</div>

<div class="buttons">
<button id="increase-a">INCREASE A</button>
<button id="increase-ab">INCREASE B</button>
<button id="increase-abc">INCREASE C</button>
<button id="decrease-a">REDUCE A</button>
<button id="decrease-ab">REDUCE B</button>
<button id="decrease-abc">REDUCE C</button>
<button id="increase-all">INCREASE ALL</button>
<button id="decrease-all">REDUCE ALL</button>
</div>

关于javascript - 使用 JS 更改 CSS RGBA 背景颜色的 alpha 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48533565/

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