A Pen by Benjamin Ashby on CodePen.
Created
October 13, 2020 21:11
-
-
Save APEMENdelights-PRVLUTION/974d69c566d1b0b7735a6e9084295b2d to your computer and use it in GitHub Desktop.
Click and rotate awesome icon
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
<a href="#"><div class="fa fa-chevron-up rotate"></div></a> |
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
$(".rotate").click(function () { | |
$(this).toggleClass("down"); | |
}) |
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
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> |
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
.rotate { | |
-moz-transition: all .3s linear; | |
-webkit-transition: all .3s linear; | |
transition: all .3s linear; | |
} | |
.rotate.down { | |
-moz-transform:rotate(180deg); | |
-webkit-transform:rotate(180deg); | |
transform:rotate(180deg); | |
} |
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
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment