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?

More than 5 years have passed since last update.

Progateがわかりやすい

0
Posted at

今週、「progate」を初めて使用しわかりやすく学ぶこともあったのでまとめていきたいと思います。

Progateの使いやすさ

私は、Web関係の言語は趣味でサイトを作る際に本を読んで学びサイト作成してきました。ゆえに、作ったもの動きはサイトを更新しながら確認しておかしかったらコードを直して…を繰り返していたのですがProgateはリアルタイムでプレビューを目視でき、コードの修正がとてもしやすいと感じました。

JQueryが楽しい

今回学習して一番楽しくできたのがJQueryでした。
関数を指定し、動かすのはプログラミングをしている感じが強まりわくわくしました。

qiita.rb
$(function() {
  // showメソッドを用いて、「#title」要素を表示してください
  $('#title').show();
  
  // fadeInメソッドを用いて、「#image」要素を表示してください
  $('#image').fadeIn();
  
});

今週は全体的に初歩的なところを学ぶ形だったので来週はアウトプット中心に行いたいと思います。

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?