Menghitung Inkrementasi HTML Menggunakan counterIncrement Style DOM
- digunakan untuk mengembalikan nilai properti counterIncrement: object.style.counterIncrement
- digunakan untuk menentukan nilai properti counterIncrement: object.style.counterIncrement = "none|number|initial|inherit"
Property Values:
- none: merupakan nilai default dari properti counterIncrement, dimana penggunaannya tidak akan me-reset nilai counter.
- number: digunakan untuk mengatur nilai inkrementasi untuk nama counter setiap kali elemen muncul. Penggunaan nilai ini dapat dinyatakan dalam nilai nol ataupun nilai negatif. Nilai default dari value number adalah 1 jika nilainya tidak ditentukan ketika digunakan pada properti counterIncrement.
- initial: digunakan untuk mengatur elemen ke posisi inisialnya.
- inherit: digunakan untuk menerima nilai turunan ke properti dari elemen parent.
<!DOCTYPE html>
<html lang="en">
<head>
<title>
Properti Style
counterIncrement DOM
</title>
<style type="text/css">
body
{
counter-reset: section;
}
h1
{
color: green;
}
h2
{
counter-increment: section;
}
h2:before
{
content: "Section "
counter(section) ". ";
}
</style>
</head>
<body>
<h1>
Blog Elfan
</h1>
<h2>
JavaScript
</h2>
<h2 id="h">
HTML
</h2>
<h2>
CSS
</h2>
<button onclick="myFunction()">
Check
</button>
<script>
function myFunction()
{
document.getElementById(
"h").style.counterIncrement =
"subsection";
}
</script>
</body>
</html>
Contoh: properti counterIncrement.
<!DOCTYPE html>
<html lang="en">
<head>
<title>
Properti Style
counterIncrement DOM
</title>
<style type="text/css">
body
{
counter-reset: section;
}
h1
{
color: green;
}
h2
{
counter-increment: section;
}
h2:before
{
content:
"Section " counter(section) ". ";
}
h3:before
{
counter-increment: category;
content: counter(section) "." counter(category) " ";
}
</style>
</head>
<body>
<h1>
Blog Elfan
</h1>
<h2>
Javascript
</h2>
<h2 id="h">
HTML
</h2>
<h2 id="H">
CSS
</h2>
<h2>
References
</h2>
<h3>
HTML Tags
</h3>
<h3>
CSS Properties
</h3>
<button
onclick="myFunction()">
Check 1
</button>
<button onclick="Function()">
Check 2
</button>
<script>
function myFunction()
{
document.getElementById(
"h").style.counterIncrement =
"subsection";
}
function Function()
{
document.getElementById(
"H").style.counterIncrement =
"subsection";
}
</script>
</body>
</html>
- 4 Value Properti emptyCells Style DOM pada HTML
- 16 Value Properti Filter Style DOM pada HTML
- 4 Value Properti Flex Style DOM pada HTML
- 4 Value Properti flexBasis Style DOM pada HTML
- 6 Value Properti flexDirection Style DOM pada HTML
- 4 Contoh Properti flexFlow Style DOM pada HTML
- 3 Value Properti flexGrow Style DOM pada HTML
5 komentar untuk "Menghitung Inkrementasi HTML Menggunakan counterIncrement 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 counterIncrement Style DOM pada HTML?
BalasHapusBerikut adalah beberapa jenis browser yang dapat digunakan untuk mengaktifkan properti counterIncrement Style DOM pada HTML:
Hapus1. Google Chrome
2. Internet Explorer
3. Firefox
4. Opera
5. Safari
Apa yang dimaksud dengan properti counterIncrement Style DOM pada HTML?
BalasHapusProperti counterIncrement Style DOM pada HTML berfungsi untuk menambang satu atau lebih nilai elemen counter atau elemen penghitung.
HapusProperti counterIncrement Style DOM biasanya digunakan bersamaan dengan properti counterReset dan Properti content.
Hapus