You can connect directly to a web page from a presentation running in Slide Show view by clicking a ________ inserted on a slide
Fill in the blank(s) with correct word
hyperlink
You might also like to view...
Let x be an int on a machine with four-byte ints. What effect does
x<<=1; x>>=1; have? a) There is no effect. b) The leftmost bit of x is set to zero. c) The rightmost bit of x is set to zero. d) Both b) and c).
Use the following statements to complete the code in Figure 12.32 to animate an image called water-balloon.png falling down.
a.
b. var myCanvas = document.getElementById("gameCanvas");
var myContext = myCanvas.getContext("2d");
c. var balloon = new Image();
balloon.src = "images/water-balloon.png";
d. var y = 0;
e. main();
f. balloon.onload = function () {
startGame();
};
g. updateGame();
h. window.requestAnimationFrame(drawGame);
i. y += 2;
j. window.setTimeout(updateGame, 33);
k. myContext.clearRect(0, 0, myCanvas.width, myCanvas.height);
l. myContext.drawImage(balloon, 300, y);
m. window.requestAnimationFrame(drawGame);