❓ Help Web developers pasok tabang!

Status
Not open for further replies.

Jisso_Kim

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

Trending Topics

Online now

Members online
1,044
Guests online
1,595
Total visitors
2,639

Forum statistics

Threads
2,273,398
Posts
28,949,244
Members
1,235,732
Latest member
toniodgreat
Back
Top