0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

WEBデザイン jQueryでスライドショーを作ろうの途中

Posted at
  1. ポジティブな気づき

・AIメンターよりChatGPTに聞くと違う答えが返ってきた。
例えば、html記述では、以下の通りとなる。
特にを削除しの記述をChatGPTが答えを返してきた。
その通りにやったら、ちょっとは良くなった。

スライドショー

css記述では以下の通りとなる。
特にmax-widthやmax-heightは初めての記述となる。

.slick1 {
width: 800px;
height: 600px;
margin: 50px auto;
}

img {
max-width: 100%;
max-height: 100%;
object-fit: cover;
border-radius: 10px;
}

  1. 難しかったこと・悩んだこと
    ・下記の現象が現在進行形であること
    ・スライドショーができない。
    ・画像の上に画像が重なっていること

  2. その他、考えたこと
    ・ChatGPTと併用して聞くことができると比較できる

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?