Skip to content

Commit 9fddafc

Browse files
committed
Minor updates to documentation
1 parent bad407b commit 9fddafc

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

documentation.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ Whether the user can change the direction of navigation during frames animating
485485

486486
Defines a button that when clicked, causes the current frame to animate out and the next to animate in.
487487

488-
- `true`: use a next button with the default CSS selector (`.next`).
488+
- `true`: use a next button with the default CSS selector (`.sequence-next`).
489489
- `false`: don't use a next button.
490490
- CSS Selector: Specify a CSS selector to an HTML element you have manually added to the document.
491491

@@ -500,7 +500,7 @@ Defines a button that when clicked, causes the current frame to animate out and
500500

501501
Defines a button that when clicked, causes the current frame to animate out and the previous to animate in.
502502

503-
- `true`: use a previous button with the default CSS selector (`.prev`).
503+
- `true`: use a previous button with the default CSS selector (`.sequence-prev`).
504504
- `false`: don't use a previous button.
505505
- CSS Selector: Specify a CSS selector to an HTML element you have manually added to the document.
506506

@@ -517,7 +517,7 @@ Defines a button that when clicked, causes the current frame to animate out and
517517

518518
A CSS selector that, when clicked, causes Sequence to pause the autoPlay feature.
519519

520-
- `true`: use a pause button with the default CSS selector (`.pause`).
520+
- `true`: use a pause button with the default CSS selector (`.sequence-pause`).
521521
- `false`: don't use a pause button.
522522
- CSS Selector: Specify a CSS selector to an HTML element you have manually added to the document.
523523

@@ -536,7 +536,7 @@ Whether frames should stop auto playing when the user hovers over Sequence. auto
536536

537537
Display a pause icon when the user hovers over Sequence.
538538

539-
- `true`: use a pause icon with the default CSS selector (`.pause-icon`).
539+
- `true`: use a pause icon with the default CSS selector (`.sequence-pause-icon`).
540540
- `false`: don't display a pause icon.
541541
- CSS Selector: Specify a CSS selector to an HTML element you have manually added to the document.
542542

@@ -551,7 +551,7 @@ Display a pause icon when the user hovers over Sequence.
551551
#####pagination
552552
**Type: true/false or a CSS selector, Default: `false`**
553553

554-
Pagination associates child elements within the pagination selector (`.pagination` by default) to each frame of Sequence. When a child element is clicked, Sequence will navigate to the frame that is associated with that child element. If `pagination` is `true`, the following HTML can be included in your document to act as pagination:
554+
Pagination associates child elements within the pagination selector (`.sequence-pagination` by default) to each frame of Sequence. When a child element is clicked, Sequence will navigate to the frame that is associated with that child element. If `pagination` is `true`, the following HTML can be included in your document to act as pagination:
555555

556556
<ul class="pagination">
557557
<li>Frame 1</li>
@@ -567,15 +567,15 @@ When a Sequence frame is navigated to (via any navigation method, such as clicki
567567

568568
HTML:
569569

570-
<ul class="pagination">
570+
<ul class="sequence-pagination">
571571
<li>Frame 1</li>
572572
<li class="current">Frame 2</li>
573573
<li>Frame 3</li>
574574
</ul>
575575

576576
CSS:
577577

578-
.pagination .current {
578+
.sequence-pagination .current {
579579
font-weight: bold;
580580
}
581581

0 commit comments

Comments
 (0)