Advertisement
espers

Star Meter

Feb 18th, 2020
342
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.65 KB | None | 0 0
  1. <!--- hi! this is co-fronting, the creator of the star meter. @spinnerprincess is the creator of this original coding, with me only updating it with star meter names and symbols. all credit goes to them for making this amazing code. have fun using! -->
  2.  
  3. <!--- part one, goes underneath any <meta name=…> tags, or underneath <head>, or before </head> - whatever works! -->
  4.  
  5. <meta name="if:centered stars" content="1"/>
  6. <meta name="text:current stars" content="12"/>
  7. <meta name="text:maximum stars" content="12"/>
  8. <meta name="color:full stars" content="#000"/>
  9. <meta name="color:empty stars" content="#ddd"/>
  10. <meta name="text:star size" content="16"/>
  11.  
  12. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
  13.  
  14. <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
  15.  
  16. <script>
  17.    $(document).ready(function () {
  18.        for (var i=0; i < {text:current stars}; i++) {
  19.           $(".stars").append(’<span style="color:{color:full stars}"><i class="fa fa-star"></i></span>’);
  20.        }
  21.  
  22.        for (var i=0; i < ({text:maximum stars} - {text:current stars}); i++) {
  23.           $(".stars").append(’<span style="color:{color:empty stars}"><i class="fa fa-star"></i></span>’);
  24.        }
  25.    });
  26. </script>
  27.  
  28. <!-- part two, goes underneath {description} or wherever else you want your stars to show up: -->
  29.  
  30. <div class="stars" title="{text:current stars}/{text:maximum stars} stars" style="font-size: {text:star size}px;{block:ifCenteredstars}width: 100%; text-align:center;{/block:ifCenteredstars}{block:ifNotCenteredstars}display: inline-block;{/block:ifNotCenteredstars}"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement