これを実現するには、jQueryセレクタを使用し、そのようにオーバーレイ要素を選択するだけです。
<button type="button" onclick="opentheSwal();">OK</button>
<script>
function opentheSwal() {
swal(
'Good job!',
'You clicked the button!',
'success'
);
$(".swal2-modal").css('background-color', '#000');//Optional changes the color of the sweetalert
$(".swal2-container.in").css('background-color', 'rgba(43, 165, 137, 0.45)');//changes the color of the overlay
}
</script>
あなたは、オーバーレイを変更し、jqueries .css()
機能を使用してCSSを適用するために.swal2-container.in
を選択する必要があります。
Good Luck。