Created
October 16, 2013 05:26
-
-
Save chexton/7003019 to your computer and use it in GitHub Desktop.
smileys.html
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
| <style> | |
| #smileys {text-align: center; padding: 40px 0 20px;} | |
| #smileys div {width: 24px; height: 24px; display: inline-block;} | |
| #smileys div:hover {width: 24px; height: 24px; display: inline-block; cursor: pointer;} | |
| #smileys #green {background: url(https://www.getvero.com/assets/smiley_green.png) 0 -24px no-repeat;} | |
| #smileys #red {background: url(https://www.getvero.com/assets/smiley_red.png) 0 -24px no-repeat;} | |
| #smileys #green:hover {background: url(https://www.getvero.com/assets/smiley_green.png) 0 0 no-repeat;} | |
| #smileys #red:hover {background: url(https://www.getvero.com/assets/smiley_red.png) 0 0 no-repeat;} | |
| </style> | |
| <div id="smileys"> | |
| <div id="green"></div> | |
| <div id="red"></div> | |
| </div> | |
| <script type="text/javascript"> | |
| $('#smileys div').click(function(){ | |
| rating = $(this).attr('id'); | |
| _veroq.push(['track', 'Rated TradeGecko', {rating: rating}]); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment