❓ Help Web developers pasok tabang!

Status
Not open for further replies.

Jisso_Kim

Honorary Poster
May ginawa po ako website for final namin. Kaso diko alam paano gawin yung zoom view sa cp. Ano po code para dito?pic1.webp
Yan po yng nagawa ko. Tapos ganitong zoom po gusto ko.
Screenshot_2020-11-26-22-21-46-01-picsay.webp
 
You do not have permission to view the full content of this post. Log in or register now.
[CODE lang="javascript"]
/* Get the element you want displayed in fullscreen mode (a video in this example): */
var elem = document.getElementById("myvideo");

/* When the openFullscreen() function is executed, open the video in fullscreen.
Note that we must include prefixes for different browsers, as they don't support the requestFullscreen method yet */
function openFullscreen() {
if (elem.requestFullscreen) {
elem.requestFullscreen();
} else if (elem.webkitRequestFullscreen) { /* Safari */
elem.webkitRequestFullscreen();
} else if (elem.msRequestFullscreen) { /* IE11 */
elem.msRequestFullscreen();
}
}
[/CODE]
 
You do not have permission to view the full content of this post. Log in or register now.
[CODE lang="javascript"]
/* Get the element you want displayed in fullscreen mode (a video in this example): */
var elem = document.getElementById("myvideo");

/* When the openFullscreen() function is executed, open the video in fullscreen.
Note that we must include prefixes for different browsers, as they don't support the requestFullscreen method yet */
function openFullscreen() {
if (elem.requestFullscreen) {
elem.requestFullscreen();
} else if (elem.webkitRequestFullscreen) { /* Safari */
elem.webkitRequestFullscreen();
} else if (elem.msRequestFullscreen) { /* IE11 */
elem.msRequestFullscreen();
}
}
[/CODE]
Salamat dito master tatry ko😍
 
Status
Not open for further replies.

About this Thread

  • 6
    Replies
  • 373
    Views
  • 4
    Participants
Last reply from:
Jisso_Kim

Trending Topics

Online now

Members online
413
Guests online
2,097
Total visitors
2,510

Forum statistics

Threads
2,316,199
Posts
29,185,703
Members
1,182,849
Latest member
carlinhosbrown
Back
Top