按鈕變換圖片
錄影畫面
主要程式長這樣
function cantSee(){
document.getElementById("img").src='1.gif'
}
function WOW(){
document.getElementById("img").src='2.gif'
}
var rgbled;
var button;
boardReady({board: 'Smart', device: '10dD2Ngv', transport: 'mqtt'}, function (board) {
board.samplingInterval = 50;
rgbled = getRGBLed(board, 6, 9, 10);
button = getPullupButton(board, 4);
button.on('pressed', function () {
rgbled.setColor('#ff6666');
});
button.on('longPress', function () {
rgbled.setColor('#ff6666');
}
按鈕變換圖片
錄影畫面
改變顏色就用 Style.color
增加文字就用 innerHTML
主要程式長這樣