new zoom link
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 7.7 KiB |
@@ -2,19 +2,26 @@
|
|||||||
<div class="row col-md-10 col-md-offset-1">
|
<div class="row col-md-10 col-md-offset-1">
|
||||||
<div class="col-md-12">
|
<div class="col-md-12">
|
||||||
|
|
||||||
<h6 class="text-center">Pautan Zoom</h6>
|
<div class="centered-container">
|
||||||
<div>
|
<!-- <h6 class="text-center">Pautan Zoom</h6> -->
|
||||||
<img :src="imageUrl" alt="Centered Image " class="centered-image" />
|
<div class="image-container">
|
||||||
|
<img :src="imageUrl" alt="meeting apps" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div><hr>
|
<div class="centered-container">
|
||||||
|
<h3>SELAMAT DATANG KE MESYUARAT AGUNG TAHUNAN
|
||||||
|
<br> KoPKB <br>KALI KE-28/2024
|
||||||
|
</h3>
|
||||||
|
|
||||||
<CENTER><h4>SELAMAT DATANG KE MESYUARAT AGUNG TAHUNAN KoPKB
|
<div class="centered-button">
|
||||||
<br> KALI KE-27/2023 </h4></CENTER>
|
<button class="btn-interactive" @click="navigateToURL" target="_blank">
|
||||||
|
Klik pada pautan berikut
|
||||||
<div class ="centered-button">
|
</button>
|
||||||
<button class="btn btn-primary" @click=" navigateToURL" target="_blank">Klik pada pautan berikut >></button>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
<div>
|
<div>
|
||||||
@@ -57,7 +64,7 @@ export default {
|
|||||||
|
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
imageUrl:'https://th.bing.com/th/id/OIP.vCNlpyR-8eSN6qHGGIQemAHaCr?w=338&h=126&c=7&r=0&o=5&dpr=2&pid=1.7'
|
imageUrl: 'https://th.bing.com/th/id/OIP.TGLvYXfe4xq5MTZe4UnTDgHaEy?w=255&h=180&c=7&r=0&o=5&dpr=1.8&pid=1.7'
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -73,39 +80,65 @@ export default {
|
|||||||
// }
|
// }
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
/* Ensure the page takes the full height of the viewport */
|
||||||
.centered-image {
|
html, {
|
||||||
/* Styles for the image */
|
height: 100%;
|
||||||
max-width: 20%; /* Ensure the image does not exceed container width */
|
margin: 0;
|
||||||
max-height: 20%; /* Ensure the image does not exceed container height */
|
display: flex;
|
||||||
position: relative;
|
justify-content: center;
|
||||||
/* top: 50%; */
|
|
||||||
left: 50%;
|
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
|
|
||||||
}
|
|
||||||
.centered-button {
|
|
||||||
/* Button styles */
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
/* background-color: #4CAF50; Green */
|
font-family: Arial, sans-serif; /* Optional: for a cleaner font */
|
||||||
border-color:rgb(219, 222, 226);
|
}
|
||||||
padding: 20px 40px;
|
|
||||||
text-align: center;
|
|
||||||
color: #fff;
|
|
||||||
border-radius: 15px;
|
|
||||||
cursor: pointer;
|
|
||||||
|
|
||||||
}
|
/* Center the container */
|
||||||
.centered-button:hover {
|
.centered-container {
|
||||||
/* Button styles on hover */
|
text-align: center; /* Center the text horizontally */
|
||||||
outline-color: #045415;
|
display: flex;
|
||||||
|
flex-direction: column; /* Stack the elements vertically */
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
height: 100%; /* Full viewport height */
|
||||||
|
}
|
||||||
|
|
||||||
}
|
/* Styling for the heading */
|
||||||
|
h3 {
|
||||||
|
font-size: 24px; /* Optional: set a specific font size */
|
||||||
|
font-weight: bold; /* Optional: make the heading bold */
|
||||||
|
margin-bottom: 20px; /* Optional: space between heading and button */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Styling for the button */
|
||||||
|
.btn-interactive {
|
||||||
|
padding: 12px 25px;
|
||||||
|
background-color: #007bff; /* Blue background color */
|
||||||
|
color: white;
|
||||||
|
border: none;
|
||||||
|
border-radius: 5px; /* Rounded corners */
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: bold;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: background-color 0.3s ease, transform 0.2s ease;
|
||||||
|
outline: none; /* Remove outline */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Hover effect for the button */
|
||||||
|
.btn-interactive:hover {
|
||||||
|
background-color: #0056b3; /* Darker blue background on hover */
|
||||||
|
transform: scale(1.05); /* Slightly enlarge the button on hover */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Active effect for when the button is clicked */
|
||||||
|
.btn-interactive:active {
|
||||||
|
background-color: #004085; /* Even darker blue when clicked */
|
||||||
|
transform: scale(0.98); /* Slightly shrink the button when clicked */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Focus effect (when tabbing through elements) */
|
||||||
|
.btn-interactive:focus {
|
||||||
|
outline: none;
|
||||||
|
box-shadow: 0 0 5px 2px rgba(0, 123, 255, 0.5); /* Blue glow on focus */
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user