Challenge programming

Javascript

Javascriptを使ったスライドショー | Simple! How to make a slide show using Javascript


HTML <img id="mypic" src=" ここに写真の情報" width="400" height="300">

Javascript const pics_src = ["写真の情報","写真の情報","写真の情報","写真の情報"]
let num = -1
function slideshow_timer(){
if(num === 3){
num = 0;
}
else {
num ++;
}
document.getElementById("mypic").src = pics_src[num]
}
// 3秒ごとに変更する
setInterval(slideshow_timer, 3000);
参考したサイトはこちらです。

やっぱりプロの人から直接学びたいという方はこちら。| Click here if you want to learn directly from professionals

キャリアアップに必要なスキルを取得しよう。| Get the skills you need to advance your career.

オンラインで受講ができるスクールですので、全国どこからでも。 | Since it is a school where you can take classes online, you can take it from anywhere in the country.

ぺージの先頭に戻る(Return to top of page)


©2020年9月 Challenge programming

プライバシーポリシー