GitHub: edutechtammy
CidiLabs Match Items: Drag and drop matching activities designed to enhance engagement through interactive pairing exercises within the Canvas Learning Management System.
Functionality: Students click on items in the "Items to Match" area. When two items form a correct pair, they receive visual confirmation and are moved to the "Matched Items" section.
Scoring: Tracks completion progress and can display final scores with reset functionality.
Placement: Can be added to pages, assignments, or discussions within Canvas.
The base match items template has been adapted with:
Select each set of two matching items.
If you are pasting this into a page that already has work in it, you will likely already have a wrapper in place. If you are starting with an empty page, you will need to add this wrapper. Be sure to place your end div at the end of the code.
<div id="dp-wrapper" class="dp-wrapper dp-flat-sections">
This is the template code for this activity.
<div class="dp-match-items dp-match-pairing dp-si-rounded dp-si-outline" style="background-color: #1d2757; padding: 20px; border-radius: 10px; border: 2px solid #d13138;">
<h4 class="dp-has-icon" style="color: white;"><i class="fas fa-object-ungroup"><span class="dp-icon-content" style="display: none;"> </span></i> Match Items</h4>
<p class="dp-match-instructions" style="color: white; border: none; background: transparent;">Select each set of two matching items.</p>
<div class="dp-unmatched-items">
<h4 class="dp-has-icon unmatched-items-header"><i class="fas fa-search"><span class="dp-icon-content" style="display: none;"> </span></i> Items to Match</h4>
<dl class="dp-match dp-match-text">
<dt data-pair-id="pair-0">Pair 1 Item 1</dt>
<dd data-pair-id="pair-0">Pair 1 Item 2</dd>
<dt data-pair-id="pair-1">Pair 2 Item 1</dt>
<dd data-pair-id="pair-1">Pair 2 Item 2</dd>
<dt data-pair-id="pair-2">Pair 3 Item 1</dt>
<dd data-pair-id="pair-2">Pair 3 Item 2</dd>
</dl>
</div>
</div>
<p> </p>