JQuery
ボックスを開く、たたむを表現するアニメーションの作成 | Creating an animation that expresses the opening and folding of a box
JavaScriptが動作しない環境ではボックスが開かれた状態で表示される。| In an environment where JavaScript does not work, the box is displayed in an open state.
- HTML
- CSS
- Javascript
- JQuery
- PHP
ボックスを開く・たたむ | Open / fold the box
アニメーション機能を使う | Use the animation function
解説
まずは「ボックスが開いた」ときの状態をHTMLとCSSで作成しておきます。次に、CSSでさらに「display: none;」として「ボックスがたたまれた状態」にします。| First, create the state when "the box is opened" with HTML and CSS. Next, in CSS, further set "display: none;" to "the box is collapsed".
「 $('#box_btn').on('click',function(){~ 」 → クリックイベントが発生したときに実行されるファンクションを意味します。A function that is executed when a click event occurs.
「 $('#box').slideToggle('slow');」 → slideToggleでは取得している要素のボックスが閉じている状態のときは開き、開いているときは閉じます。| In slideToggle, when the box of the acquired element is closed, it opens, and when it is open, it closes.
slideToggle('fast');ではアニメーション速度が速くなり、slideToggle(1000)ではアニメーションにかかる時間をミリ秒で指定できます。| slideToggle ('fast'); speeds up the animation, and slideToggle (1000) allows you to specify the time it takes to animate in milliseconds.
<noscript>~</noscript>:タグについて
<noscript>:~</noscript>の中に書かれた要素はJavascriptが動作しない環境で閲覧している時だけ有効になります。| The elements written in <noscript> ~ < / noscript> are valid only when browsing in an environment where Javascript does not work.
今回は上記CSSとは別途設定として下記のようにしているのでJavascriptが動作しない環境ではボックスが開かれた状態で表示されます。| This time, since it is set as follows separately from the above CSS, it will be displayed with the box opened in the environment where Javascript does not work.
この本を参考にして学び、完成させることができました。しかし、ここではプログラミング初心者の私が詳しく解説することは、おこがましく、難しく出来ません(ToT)
その点、この本では丁寧な解説が載っていますので、解説とともにコードを書き、完成させればより深く学ぶことができます(^.^)、実際、初心者の私でもわかりやすかったです。身に付け消えないスキルが3,000円弱ならコスパよく、買っておいてよかったと満足してます。
もっと深く学びたい人にはこちらもどうぞ。| For those who want to learn more deeply, this is also recommended.
キャリアアップに必要なスキルを取得しよう。| 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