Mengatur Lebar Gambar HTML Menggunakan borderImageWidth Style DOM
- berfungsi untuk mengembalikan nilai properti borderImageWidth: object.style.borderImageWidth
- berfungsi untuk mengatur nilai properti borderImageWidth: object.style.borderImageWidth = "number|percentage|auto|initial|inherit"
Return Values: berfungsi untuk mengembalikan sebuah nilai string, yang merepresentasikan nilai properti border-image-width dari suatu elemen.
Property Values:
- number: digunakan untuk mengatur nilai lebar sebagai nilai komputasi koresponden ganda dari border-width. Nilai properti ini akan menjadi default jika diatur ke angka 1.
- length: digunakan untuk mengatur nilai lebar dalam satuan unit length.
- percentage: digunakan untuk mengatur nilai lebar dalam satuan persen. Nilai persen merupakan nilai relatif terhadap nilai lebar dari border image area untuk horizontal offsets, dan nilai panjang dari border image area untuk vertical offsets.
- auto: membuat nilai lebar dari border adalah setara dengan nilai lebar intrinsik atau panjang intrinsik dari corresponding image slice.
- initial: digunakan untuk mengatur properti borderImageWidth ke nilai default.
- inherit: menerima nilai properti turunan dari elemen parent.
Contoh:
<!DOCTYPE html>
<html>
<head>
<title>
Properti Style
borderImageWidth DOM
</title>
<style>
.item
{
height: 70px;
border: 10px solid transparent;
border-image:
url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQlSiYauLDl9S5f83REfDnSdXru4UHijiKfLmuxx_2vhqkARLlEqT2BM2_NhXy_cYOJkUuY40JJ4bZguAuip2_3fo9oMdjyLiyXRljhdIL8mUZ_cKN3mIQj4h2aCs3GqTc_Xc9UYHjQUej_VNzA8pp_GatXLiFSdPob66D5ndmGVYUPGdVOQ_z9UNE/w320-h320/blogmapel%20(21).jpg');
border-image-slice: 60;
border-image-repeat: round;
text-align:center;
padding-top:20px;
font-size:40px;
font-weight:bold;
}
</style>
</head>
<body>
<h2>
Properti Style
borderImageWidth DOM
</h2>
<p>
Klik tombol untuk mengubah
lebar dari border-image
</p>
<div class = "item">
Blog Elfan
</div>
<button
onclick = "changeWidth()">
Click Here!
</button>
<script>
function changeWidth()
{
elem = document.querySelector('.item');
// Pengaturan lebar gambar ke
// kelipatan 3
elem.style.borderImageWidth = '3';
}
</script>
</body>
</html>
Output:Properti Style borderImageWidth DOM
Klik tombol untuk mengubah lebar dari border-image
Contoh:
<!DOCTYPE html>
<html>
<head>
<title>
Properti Style
borderImageWidth DOM
</title>
<style>
.item
{
height: 70px;
border: 10px solid transparent;
border-image:
url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQlSiYauLDl9S5f83REfDnSdXru4UHijiKfLmuxx_2vhqkARLlEqT2BM2_NhXy_cYOJkUuY40JJ4bZguAuip2_3fo9oMdjyLiyXRljhdIL8mUZ_cKN3mIQj4h2aCs3GqTc_Xc9UYHjQUej_VNzA8pp_GatXLiFSdPob66D5ndmGVYUPGdVOQ_z9UNE/w320-h320/blogmapel%20(21).jpg');
border-image-slice: 60;
border-image-repeat: round;
text-align:center;
padding-top:20px;
font-size:40px;
font-weight:bold;
}
</style>
</head>
<body>
<h2>
Properti Style
borderImageWidth DOM
</h2>
<p>
Klik tombol untuk mengubah
lebar dari border-image
</p>
<div
class = "item">
Blog Elfan
</div>
<button
onclick = "changeWidth()">
BLog TIK
</button>
<script>
function changeWidth()
{
elem = document.querySelector('.item');
// Pengaturan lebar gambar
// dalam ukuran tiga kali
// lipat
elem.style.borderImageWidth = '30px';
}
</script>
</body>
</html>
Output:Properti Style borderImageWidth DOM
Klik tombol untuk mengubah lebar dari border-image
Contoh:
<!DOCTYPE html>
<html>
<head>
<title>
Properti Style
borderImageWidth DOM
</title>
<style>
.item
{
height: 70px;
border: 10px solid transparent;
border-image:
url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQlSiYauLDl9S5f83REfDnSdXru4UHijiKfLmuxx_2vhqkARLlEqT2BM2_NhXy_cYOJkUuY40JJ4bZguAuip2_3fo9oMdjyLiyXRljhdIL8mUZ_cKN3mIQj4h2aCs3GqTc_Xc9UYHjQUej_VNzA8pp_GatXLiFSdPob66D5ndmGVYUPGdVOQ_z9UNE/w320-h320/blogmapel%20(21).jpg');
border-image-slice: 60;
border-image-repeat: round;
text-align:center;
padding-top:20px;
font-size:40px;
font-weight:bold;
}
</style>
</head>
<body>
<h2>
Properti Style
borderImageWidth DOM
</h2>
<p>
Klik tombol untuk mengubah
ukuran lebar dari border-image
</p>
<div class = "item">
Blog Elfan
</div>
<button
onclick = "changeWidth()">
Blog TIK
</button>
<script>
function changeWidth()
{
elem = document.querySelector('.item');
// Pengaturan lebar gambar ke
// ukuran tiga kali lipat
elem.style.borderImageWidth = '10%';
}
</script>
</body>
</html>
Output:Properti Style borderImageWidth DOM
Klik tombol untuk mengubah ukuran lebar dari border-image
Contoh:
<!DOCTYPE html>
<html>
<head>
<title>
Properti Style
borderImageWidth DOM
</title>
<style>
.item
{
height: 70px;
border: 10px solid transparent;
border-image:
url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQlSiYauLDl9S5f83REfDnSdXru4UHijiKfLmuxx_2vhqkARLlEqT2BM2_NhXy_cYOJkUuY40JJ4bZguAuip2_3fo9oMdjyLiyXRljhdIL8mUZ_cKN3mIQj4h2aCs3GqTc_Xc9UYHjQUej_VNzA8pp_GatXLiFSdPob66D5ndmGVYUPGdVOQ_z9UNE/w320-h320/blogmapel%20(21).jpg');
border-image-slice: 60;
border-image-repeat: round;
text-align:center;
padding-top:20px;
font-size:40px;
font-weight:bold;
}
</style>
</head>
<body>
<h2>
Properti Style
borderImageWidth DOM
</h2>
<p>
Klik tombol untuk mengubah
ukuran lebar dari border-image
</p>
<div
class = "item">
Blog Elfan
</div>
<button
onclick = "changeWidth()">
Blog TIK
</button>
<script>
function changeWidth()
{
elem = document.querySelector('.item');
// Pengaturan lebar gambar
dalam ukuran tiga kali lipat
elem.style.borderImageWidth = 'auto';
}
</script>
</body>
</html>
Output:Properti Style borderImageWidth DOM
Klik tombol untuk mengubah ukuran lebar dari border-image
Contoh:
<!DOCTYPE html>
<html>
<head>
<title>
Properti Style
borderImageWidth DOM
</title>
<style>
.item
{
height: 70px;
border: 10px solid transparent;
border-image:
url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQlSiYauLDl9S5f83REfDnSdXru4UHijiKfLmuxx_2vhqkARLlEqT2BM2_NhXy_cYOJkUuY40JJ4bZguAuip2_3fo9oMdjyLiyXRljhdIL8mUZ_cKN3mIQj4h2aCs3GqTc_Xc9UYHjQUej_VNzA8pp_GatXLiFSdPob66D5ndmGVYUPGdVOQ_z9UNE/w320-h320/blogmapel%20(21).jpg');
border-image-slice: 60;
border-image-repeat: round;
text-align:center;
padding-top:20px;
font-size:40px;
font-weight:bold;
}
</style>
</head>
<body>
<h2>
Properti Style
borderImageWidth DOM
</h2>
<p>
Klik tombol untuk mengubah
ukuran lebar dari border-image
</p>
<div
class = "item">
Blog Elfan
</div>
<button
onclick = "changeWidth()">
Blog TIK
</button>
<script>
function changeWidth()
{
elem = document.querySelector('.item');
// Pengaturan lebar gambar
// menjadi tiga kali lipat
elem.style.borderImageWidth = 'initial';
}
</script>
</body>
</html>
Output:Properti Style borderImageWidth DOM
Klik tombol untuk mengubah ukuran lebar dari border-image
Contoh:
<!DOCTYPE html>
<html>
<head>
<title>
Properti Style
borderImageWidth DOM
</title>
<style>
.item
{
height: 70px;
border: 10px solid transparent;
border-image:
url('https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiQlSiYauLDl9S5f83REfDnSdXru4UHijiKfLmuxx_2vhqkARLlEqT2BM2_NhXy_cYOJkUuY40JJ4bZguAuip2_3fo9oMdjyLiyXRljhdIL8mUZ_cKN3mIQj4h2aCs3GqTc_Xc9UYHjQUej_VNzA8pp_GatXLiFSdPob66D5ndmGVYUPGdVOQ_z9UNE/w320-h320/blogmapel%20(21).jpg');
border-image-slice: 60;
border-image-repeat: round;
text-align:center;
padding-top:20px;
font-size:40px;
font-weight:bold;
}
.Bonss
{
/* Pengaturan border-width
dari parent */
border-image-width: 30px;
}
</style>
</head>
<body>
<h2>
Properti Style
borderImageWidth DOM
</h2>
<p>
Klik tombol untuk mengubah
ukuran lebar dari border-image
</p>
<div class = "Bonss">
<div class = "item">
Blog Elfan
</div>
</div>
<button
onclick = "changeWidth()">
Blog TIK
</button>
<script>
function changeWidth()
{
elem = document.querySelector('.item');
// Pengaturan lebar gambar ke
// nilai turunannya
elem.style.borderImageWidth = 'inherit';
}
</script>
</body>
</html>
Output:Properti Style borderImageWidth DOM
Klik tombol untuk mengubah ukuran lebar dari border-image
- 4 Value Properti borderRadius Style DOM pada HTML
- 5 Value Properti borderRight Style DOM pada HTML
- 2 Contoh Penggunaan Tag Legend untuk Pendefinisian Title HTML
- 12 Nilai Properti borderRightStyle DOM pada HTML
- 6 Nilai Properti borderRightWidth Style DOM pada HTML
- 3 Value Properti borderSpacing Style DOM pada HTML
- 12 Value Properti borderStyle Style DOM pada HTML
5 komentar untuk "Mengatur Lebar Gambar HTML Menggunakan borderImageWidth Style DOM"
Hubungi admin melalui Wa : +62-896-2414-6106
Respon komentar 7 x 24 jam, mohon bersabar jika komentar tidak langsung dipublikasi atau mendapatkan balasan secara langsung.
Bantu admin meningkatkan kualitas blog dengan melaporkan berbagai permasalahan seperti typo, link bermasalah, dan lain sebagainya melalui kolom komentar.
- Ikatlah Ilmu dengan Memostingkannya -
- Big things start from small things -
Jenis browser apa saja yang dapat digunakan untuk mengaktifkan properti borderImageWidth Style DOM pada HTML?
BalasHapusBerikut adalah beberapa jenis browser yang dapat digunakan untuk mengaktifkan properti borderImageWidth Style DOM pada HTML:
Hapus1. Chrome
2. Internet Explorer 11
3. Firefox
4. Safari 6
Apa yang dimaksud dengna properti borderImageWidth Style DOM pada HTML?
BalasHapusProperti borderImageWidth Style DOM pada HTML digunakan untuk menentukan ukuran lebar dari batas gambar yang dikenai properti tersebut.
HapusProperti HTML DOM borderImageWidth digunakan untuk mengatur atau mendapatkan nilai lebar gambar perbatasan untuk suatu elemen.
Hapus