performanceactive / phonegap-custom-camera-plugin

45 stars 37 forks source link

Camera Auto Click Images #20

Open Yojerry11 opened 6 years ago

Yojerry11 commented 6 years ago

Hello there.. I need to capture an image every 30 seconds after the user has tapped the capture button! Can any one help me with that?

Shivamag14 commented 6 years ago

i think you can just use javascript for this by using setInterval for 30secs by calling a capture function again at an setinterval of 30 secs.

let timer = setInterval(() =>{ // capture function here }, 30000);

Yojerry11 commented 5 years ago

Thankyouuu.. Can u help me a little bit more.. If u can tell me how exactly i get the app taking pics in the first Place