Inspired by this article, except I've tried to create one element (no cheating with pseudos) versions. Not meant to reproduce the loaders in the article exactly and may have poorer browser support.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<!--header--> | |
<head> | |
<!-- Basic Page Needs | |
================================================== --> | |
<meta charset="utf-8"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="more"> | |
<svg width="32px" height="32px" viewBox="0 0 32 32"> | |
<circle cx="16" cy="16" r="15"></circle> | |
<g id="plus"> | |
<path d="M16,11 L16,21"></path> | |
<path d="M11,16 L21,16"></path> | |
</g> | |
</svg> | |
</div> |