forked from GithubMirrors/cardconjurer
		
	
		
			
				
	
	
		
			128 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			128 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html5>
 | |
| <html>
 | |
| <head>
 | |
| 	<title>Card Conjurer</title>
 | |
| 	<!-- Favicon craziness! -->
 | |
| 	<link rel="stylesheet" href="data/site/styles.css">
 | |
| 	<link rel="apple-touch-icon" sizes="180x180" href="favicons/apple-touch-icon.png">
 | |
| 	<link rel="icon" type="image/png" sizes="32x32" href="favicons/favicon-32x32.png">
 | |
| 	<link rel="icon" type="image/png" sizes="16x16" href="favicons/favicon-16x16.png">
 | |
| 	<link rel="manifest" href="favicons/site.webmanifest">
 | |
| 	<link rel="mask-icon" href="favicons/safari-pinned-tab.svg" color="#64ca2f">
 | |
| 	<link rel="shortcut icon" type="image/x-icon" href="favicons/favicon.ico">
 | |
| 	<meta name="msapplication-TileColor" content="#00a300">
 | |
| 	<meta name="msapplication-config" content="favicons/browserconfig.xml">
 | |
| 	<meta name="theme-color" content="#64ca2f">
 | |
| 	<!-- Other things -->
 | |
| 	<meta charset="UTF-8">
 | |
| 	<meta name="viewport" content="width=device-width, initial-scale=1">
 | |
| 	<!-- Here's the stuff that does things? -->
 | |
| 	<script type='application/ld+json'>
 | |
| 	{
 | |
| 		"@context": "http://schema.org/",
 | |
| 		"@type": "WebPage",
 | |
| 		"creator": "Kyle Burton",
 | |
| 		"dateCreated": "July 2018",
 | |
| 		"inLanguage": {
 | |
| 			"@type": "Language",
 | |
| 			"name": "English"
 | |
| 		},
 | |
| 		"keywords": [
 | |
| 			"MTG",
 | |
| 			"Magic",
 | |
| 			"card",
 | |
| 			"custom",
 | |
| 			"creator"
 | |
| 		],
 | |
| 		"typicalAgeRange": "All ages",
 | |
| 		"description": "Card Conjurer: A free online tool that creates custom Magic: The Gathering Cards. Fast, easy, and offers a wide variety of card frames and other customizations. Planar cards, Ixalan maps, Planeswalkers, and more!",
 | |
| 		"image": "http://cardconjurer.com/data/site/sampleCards/sample8.png",
 | |
| 		"mainEntityOfPage": "cardconjurer.com",
 | |
| 		"name": "Card Conjurer"
 | |
| 	}
 | |
| 	</script>
 | |
| </head>
 | |
| <header>
 | |
| 	<div class="title"><img src="data/site/images/title.png" id="header"></div>
 | |
| </header>
 | |
| 
 | |
| 
 | |
| <body>
 | |
| 	<div class="grid mainGrid">
 | |
| 		<!-- from here -->
 | |
| 		<div class="canvasContainer">
 | |
| 			<canvas id="canvas" width="750" height="750"></canvas>
 | |
| 		</div>
 | |
| 		<div class="cmmArea">
 | |
| 			<div class="grid selectionGrid">
 | |
| 				<div onclick="toggleView('image', 'cmm')">Custom Set Symbol</div>
 | |
| 			</div>
 | |
| 			<div class="selectionGridTarget padded">
 | |
| 				<div class="cmm shown" id="cmm-image">
 | |
| 					Image
 | |
| 					<input type="file" name="inputCardArt" class="input" accept="image/*" onchange="loadImage(event, imgOriginalSymbol)" id="inputPicture" placeholder="Via File Upload">
 | |
| 					<input type="text" class="input" placeholder="Or Via URL" onchange="imageURL(this.value, imgOriginalSymbol, 'none')"><br><br>
 | |
| 					Border Thickness
 | |
| 					<input id="inputBorderThickness" type="number" class="input" min="0" value="14" step="1" oninput="createSymbol()">
 | |
| 					Border Color
 | |
| 					<input type="color" id="inputBorderColor" value="#000000" class="input" onchange="createSymbol()"><br><br>
 | |
| 					Rarity
 | |
| 					<span class="dropdown">
 | |
| 						<select onchange="createSymbol()" class="input" id="inputRarity">
 | |
| 							<option value="#000000,#000000">Common</option>
 | |
| 							<option value="#4d6770,#c2dfe8">Uncommon</option>
 | |
| 							<option value="#82713d,#d8bd7a" selected="selected">Rare</option>
 | |
| 							<option value="#a52c28,#e38428">Mythic</option>
 | |
| 							<option value="#622c75,#c39fc7">Timeshifted</option>
 | |
| 							<option value="custom">Custom</option>
 | |
| 						</select>
 | |
| 					</span>
 | |
| 					Gradient Angle
 | |
| 					<input id="inputGradientAngle" type="number" class="input" value="30" step="15" oninput="createSymbol()">
 | |
| 					<br><br>
 | |
| 					Custom Gradient Colors<br>
 | |
| 					Outer <input type="color" id="inputOuterColor" value="#113300" class="input" onchange="createSymbol()"><br>
 | |
| 					Inner <input type="color" id="inputInnerColor" value="#88ff00" class="input" onchange="createSymbol()"><br><br>
 | |
| 					<a onclick="downloadCardImage(this)" id="downloadCardImage" href="" target="_blank" download="symbol.png">Download</a>
 | |
| 				</div>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 		<div style="display: none;"></div>
 | |
| 		<!-- to here -->
 | |
| 		<div>
 | |
| 			<div class="padded">
 | |
| 				<div class="miniTitle">
 | |
| 					How You Can Help
 | |
| 				</div>
 | |
| 				<div class="paragraph">
 | |
| 					I hope that you found Card Conjurer useful! If you did, you can help me out tremendously by making a small donation or using a referral link:
 | |
| 				</div>
 | |
| 				<div class="grid donateGrid selectionGrid">
 | |
| 					<div onclick="window.open('https://www.paypal.me/kyleburtondonate', '_blank');" style="color:rgb(0,37,134);">PayPal<img src="data/site/icons/paypal.png"></div>
 | |
| 					<div onclick="window.open('https://pucatrade.com/invite/gift/186748', '_blank');" style="color:rgb(61,33,58);">PucaTrade<img src="data/site/icons/pucatrade.png"></div>
 | |
| 					<div onclick="window.open('https://twitter.com/ImKyle4815', '_blank');" style="color:rgb(0,174,239);">@ImKyle4815<img src="data/site/icons/twitter.png"></div>
 | |
| 					<div onclick="window.open('https://www.massdrop.com/?referer=LNWNLL', '_blank');" style="color:rgb(255,255,255);">Massdrop<img src="data/site/icons/massdrop.png"></div>
 | |
| 				</div>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</div>
 | |
| </body>
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| 
 | |
| <footer>
 | |
| 	<div id="alertMenu">
 | |
| 	</div>
 | |
| 	<div class="footer">
 | |
| 		<a href="http://cardconjurer.com/TermsOfUse.txt" target="_blank">Terms of Use</a> • <a href="http://cardconjurer.com/Disclaimer.txt" target="_blank">Disclaimer</a> • <a href="https://github.com/ImKyle4815/CardConjurer" target="_blank">Github page</a> • <a href="https://mail.google.com/mail/u/0/?view=cm&fs=1&to=CardConjurerMTG@gmail.com&su=Card%20Conjurer&tf=1" target="_blank">Contact</a> • <a href="index.html">Card Maker</a> <a href="life.html">Life Counter</a>
 | |
| 	</div>
 | |
| </footer>
 | |
| 
 | |
| <script src="data/symbol/symbol.js"></script>
 | |
| <script src="data/site/main.js"></script>
 | |
| 
 | |
| <html> | 
