タグ

2018年4月11日のブックマーク (2件)

  • Youtubeの動画を背景に

    Introduction In the ever-evolving landscape of web browsing, staying abreast of the latest technologies is crucial. HTML5, the fifth and current version of the Hypertext Markup Language, has revolutionized the way we experience the web. With its advanced features and enhanced capabilities, HTML5 has become the cornerstone of modern web development, offering a more seamless and interactive user exp

    Youtubeの動画を背景に
    yayocan
    yayocan 2018/04/11
    マウスホイール プラグイン
  • Ajaxなどで変更したDOMに対するイベント - Qiita

    メモ書き程度に書いておきます。 ajaxなどで変更したDOMに対するイベントとは。 例えば以下のような時です。 $.ajax({ url: "ex.php", type: "GET", data: { id: 1 }, success: function(data){ $("ul").append("<li>"+data+"</li>"); } }); jQuery Ajaxの書き方はそれぞれあると思うので、ここでは触れません。 とても適当な例ですが、ex.phpに対してGETメソッドを使い、id=1を送っています。 その結果がsuccessのdataに返ってきます。 そのdataをli要素としてulに追加している。という状態です。 この時に、ulはもともと書かれていますが、li要素はajaxでとってきてから初めてDOMに反映されます。 これをajaxなどで変更したDOMと今回はさせていた

    Ajaxなどで変更したDOMに対するイベント - Qiita
    yayocan
    yayocan 2018/04/11
    ajax javascript