0Pricing
Angular Academy · Lesson

Custom Directives

Create and apply custom directives to enhance UI.

Custom Directives is a free Angular Academy lesson on CoddyKit — lesson 1 of 3. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Angular Academy learning path, one of 3 lessons in the course, and your progress syncs across the web and the CoddyKit app.

1

Custom Directives in Angular

Directives allow you to extend HTML. This lesson introduces custom directives and how you can create your own.

Custom Directives — illustration 1

2

What is a Directive?

Directives change the appearance or behavior of DOM elements. Angular provides built-in directives like *ngIf and *ngFor.

3

Types of Directives

  • Component Directives
  • Attribute Directives - change appearance or behavior
  • Structural Directives - change layout (like *ngIf)

4

Creating an Attribute Directive

Create a directive using the Angular CLI:

ng generate directive highlight
ng generate directive highlight

5

Applying the Directive

Use your directive as an attribute in your template:

<p appHighlight>Highlighted Text</p>
<p appHighlight>Highlighted Text</p>

6

Directive Logic

Directives contain logic that changes DOM elements. For example, you can set background color dynamically.

constructor(private el: ElementRef) {
  this.el.nativeElement.style.backgroundColor = 'yellow';
}

7

@HostListener Decorator

Use @HostListener to respond to events on elements with your directive:

@HostListener('mouseenter') onMouseEnter() {
  this.highlight('blue');
}

8

9

@Input() in Directives

@Input() lets you pass data into directives from templates:

@Input() defaultColor: string;

10

Summary

You learned how to create and use custom directives to enhance your Angular apps. Well done!

Custom Directives — illustration 10

Frequently asked questions

Is the “Custom Directives” lesson free?

Yes — the full text of “Custom Directives” is free to read here on the web, and the Angular Academy course includes 3 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Angular Academy course, upgrade to CoddyKit PRO.

What will I learn in “Custom Directives”?

Create and apply custom directives to enhance UI. You practise Angular Academy with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.

Do I need any experience to start Angular Academy?

No prior experience is required. Angular Academy on CoddyKit is structured for beginners through advanced learners; this is — lesson 1 of 3, so you can start here or from the beginning and move at your own pace.

How long does the “Custom Directives” lesson take?

Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.

Can I write and run code in this Angular Academy lesson?

Yes. Every Angular Academy lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.

All lessons in this course

  1. Custom Directives
  2. Component Interaction
  3. Dynamic Components
← Back to Angular Academy