<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
</body>
</html>
function Canvas(width, height) {
const canvas = document.createElement('canvas')
canvas.width = width
canvas.height = height
return [canvas, canvas.getContext('2d')]
}
// 畫布1. 實心矩形
const width = 200
const height = 200
const [canvas1, ctx1] = Canvas(width, height)
ctx1.fillStyle = '#f1f1f1'
ctx1.fillRect(0, 0, width, height)
// 畫布2, 實心圓
globalCompositeOperation = 'source-over'
const [canvas2, ctx2] = Canvas(100, 100)
ctx2.arc(50, 50, 30, 0, 2*Math.PI, false)
ctx2.fillStyle = 'rgba(255, 0, 0, .7)'
ctx2.fill()
// 畫布3, 空心圓
const [canvas3, ctx3] = Canvas(50, 50)
ctx3.beginPath()
ctx3.arc(25, 25, 15, 0, 2*Math.PI, false)
ctx3.strokeStyle = 'hsl(210, 100%, 50%)'
ctx3.lineWidth = '5'
ctx3.stroke()
// 畫布4, 三角形
const [canvas4, ctx4] = Canvas(100, 100)
ctx4.strokeStyle = 'green'
ctx4.beginPath()
ctx4.moveTo(15, 85)
ctx4.lineTo(50, 15)
ctx4.lineTo(85, 85)
ctx4.closePath()
ctx4.lineWidth = '5'
ctx4.stroke()
// 預設值,新圖蓋在舊圖之上
ctx4.globalCompositeOperation = 'source-over'
ctx4.drawImage(canvas3, 50, 50)
// 舊圖蓋在新圖之上
ctx3.globalCompositeOperation = 'destination-over'
ctx3.drawImage(canvas2, 25, 15)
// 新舊圖重疊部分其餘透明
ctx2.globalCompositeOperation = 'xor'
ctx2.drawImage(canvas1, 25, 15)
// 舊圖形只保留在新、舊圖形重疊的舊圖形區域,然後蓋在新圖形之上。
ctx1.globalCompositeOperation = 'destination-atop'
ctx1.drawImage(canvas4, 25, 15)
document.body.appendChild(canvas4)
document.body.appendChild(canvas3)
document.body.appendChild(canvas2)
document.body.appendChild(canvas1)
Output
This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account
Dismiss xKeyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |