usablica / intro.js

Lightweight, user-friendly onboarding tour library
http://introjs.com
Other
22.69k stars 2.59k forks source link

Can't able to highlight Angular Material tabs #2005

Closed Prshant-Sharma closed 4 months ago

Prshant-Sharma commented 10 months ago

I'm using tabs of angular material in my application.

I want to show an intro for these tabs.

image

But intro.js can't able to find them in the DOM I guess because intro showing for these in the center of the screen instead of highlighting those tabs.

Below is my workaround how I'm trying to use it:

<mat-tab id="mat-tabs">
 ...
</mat-tab

In, .ts file:

introJs().setOptions({  
  steps: [{
    title: 'Title of tour',
    intro: 'Lorem ipsum',
    element: '#mat-tabs'
  }]
});

I tried document.getElementById('mat-tabs') also, but no success. It still showing in the middle of the screen.

Please assist how to highlight tabs of Angular material?

stale[bot] commented 7 months ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.