我已經下載了一個HTML5/JS應用程序,但我認爲他們的代碼不適用於Meteor。鑑於下面的例子,我在哪裏或如何轉換它,以便它可以與Meteor一起使用? (因爲我的web應用程序的其餘部分是建立在流星)流星:我如何轉換HTML/HTML5代碼以使用流星?
<template name="scratch">
<head>
<meta charset="utf-8" />
<title>scratch.js - Example 1</title>
<script type="text/javascript" src="assets/js/scratch.min.js"></script>
<script>
function callback(d) { d.container.style.backgroundImage = 'url(assets/images/demo1-end.gif)'; d.container.innerHTML = ''; }
function percent(p) { document.getElementById("counter").innerHTML = p; }
window.onload = function() {
createScratchCard({
"container":document.getElementById("scratchcard"),
"background":"assets/images/demo1-background.png",
"foreground":"assets/images/demo1-foreground.png",
"percent":85,
"coin":"assets/images/coin2.png",
"thickness":18,
"counter":"percent",
"callback":"callback"
});
}
</script>
<style>
body { text-align: center; }
#scratchcard { display: block; width: 180px; height: 180px; margin: 40px auto; }
</style>
</head>
<body>
<div id="scratchcard"></div>
<span id="counter">0</span><span>%</span>
</body>
</template>
謝謝你...我想設置當某個%被抓到時,該站點將顯示一個鏈接並也揭示整個圖像......我在哪裏看? – Farhan
'$('#scratchcard')。wScratchPad(尺寸:5,//刷子/劃痕的尺寸。 bg:'#cacaca',//背景(圖像路徑或十六進制顏色)。 fg:'#6699ff',//前景(圖像路徑或十六進制顏色)。 realtime:true,//計算realitime的百分比。 光標:'十字線'//設置光標。 scratchDown:function(percent){ if(percent> 50){ do somthing } } }); ' –
scratchDown:function(percent){ \t if(percent> 50){console.log('eh'); } } });這樣做,但控制檯日誌什麼也沒有顯示......我也跟着他們的github,但沒有任何回報......功能(e,百分比)......我必須導入他們的整個軟件包嗎? – Farhan