Action buttons in EJ2 TypeScript Card control
8 May 20235 minutes to read
You can include Action buttons within the Card and customize them. Action button is a div
element with e-card-actions
class followed by button tag or anchor tag within the card root element.
- For adding action buttons you can create button or anchor tag with
e-card-btn
class within the card action element.
<div class = "e-card">
<div class="e-card-actions">
<button class="e-card-btn"></button>
<a href="#"></a>
</div>
</div>
Vertical
By default, action buttons positioned in horizontal alignment , and also it can be aligned to show in vertical alignment by adding e-card-vertical
class.
<div class = "e-card">
<div class="e-card-actions e-card-vertical">
<button class="e-card-btn">More</button>
<a href="#">Share</a>
</div>
</div>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Essential JS 2 Card Component</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no" />
<meta name="description" content="Essential JS 2" />
<meta name="author" content="Syncfusion" />
<link rel="shortcut icon" href="resources/favicon.ico" />
<link href="index.css" rel="stylesheet" />
<link href="https://cdn.syncfusion.com/ej2/27.1.48/material.css" rel="stylesheet" />
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div style="margin: 50px;">
<!--element which is going to render the Card-->
<div class="e-card" style="max-width:400px">
<div class="e-card-header-title">Eiffel Tower</div>
<div class="e-card-content">
The Eiffel Tower is acknowledged as the universal symbol of Paris and France.
</div>
<div class="e-card-actions">
<button class="e-card-btn">
<img src="./fav.png" style="height: 18px;width: 18px;" title="Bookmark">
</button>
<button class="e-card-btn">
<img src="./like.png" style="height: 18px;width: 18px;" title="Like">
</button>
<button class="e-card-btn">
<img src="./share.png" style="height: 18px;width: 18px;" title="Share">
</button>
</div>
</div>
</div>
<div style="margin-left: 50px;">
<!--element which is going to render the Card-->
<div class="e-card" style="max-width:400px">
<div class="e-card-header-title">Eiffel Tower</div>
<div class="e-card-content">
The Eiffel Tower is acknowledged as the universal symbol of Paris and France.
</div>
<div class="e-card-actions e-card-vertical">
<button class="e-card-btn">LIKE</button>
<button class="e-card-btn">SHARE</button>
</div>
</div>
</div>
</body>
</html>