❓ 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
  • 377
    Views
  • 4
    Participants
Last reply from:
Jisso_Kim

Trending Topics

Online now

Members online
987
Guests online
3,418
Total visitors
4,405

Forum statistics

Threads
2,329,054
Posts
29,246,001
Members
1,156,247
Latest member
lamaj
Back
Top