단순 코드 기록/BootStrap

BootStrap_Spinner

일일일코_장민기 2024. 2. 9. 13:56
728x90

<!DOCTYPE html>

<html>

 

<head>

<meta charset="UTF-8">

<title>Insert title here</title>

<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet"

integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">

 

</head>

 

<body>

 

<button id="btn" onclick="location.href='http://www.google.com'">

ok

</button>

 

 

<div id="spinner" hidden class="spinner-border text-primary" role="status">

<span class="visually-hidden">Loading...</span>

</div>

 

<script type="text/javascript">

document.getElementById("btn").addEventListener("click", function(){

document.getElementById("spinner").removeAttribute("hidden")

document.getElementById("btn").setAttribute("hidden", "true");

})

 

 

</script>

 

</body>

 

</html>

'단순 코드 기록 > BootStrap' 카테고리의 다른 글

BootStrap_ToolTip  (0) 2024.02.09
BootStrap_Pagination  (0) 2024.02.09
BootStrap_Modal  (0) 2024.02.09
BootStrap_HideData  (0) 2024.02.09
BootStrap_Image_Slide  (0) 2024.02.09