Forked from ToadKing/gist:38c6a249a1419c1df6cce4b7174f1fdb
Created
July 13, 2020 20:51
-
-
Save sgnls/085a4d30c04457e634302b9b629ae07d to your computer and use it in GitHub Desktop.
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 id="wheel" ref="wheelContainer" :style="styles.wheel"> | |
<img :style="styles.ticker" | |
ref="ticker" | |
:src="settings.ticker.url"/> | |
<div id="inner-wheel"> | |
<img v-if="settings.centerImage.enabled" | |
:src="settings.centerImage.url" | |
:style="styles.centerImage" /> | |
<svg viewBox="-1 -1 2 2" | |
xmlns="http://www.w3.org/2000/svg" | |
version="1.1" | |
:style="'transform: rotate(' + rotation + 'rad)'"> | |
<defs> | |
<pattern id="img1" patternUnits="userSpaceOnUse" width="1" height="1"> | |
<image xlink:href="https://i.imgur.com/DHzWJAq.png" width="1" height="1" /> | |
</pattern> | |
</defs> | |
<path v-for="(range, index) in ranges" | |
:id="'prize-' + (index + 1)" | |
:d="range.d" | |
:fill="'url(#img' + (index + 1) + ')'" | |
stroke="black" | |
stroke-width="0.01" | |
class="pie-section"></path> | |
</svg> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment