並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 40 件 / 627件

新着順 人気順

Loadingの検索結果1 - 40 件 / 627件

タグ検索の該当結果が少ないため、タイトル検索結果を表示しています。

Loadingに関するエントリは627件あります。 performance数学パフォーマンス などが関連タグです。 人気エントリには 『表示速度を飛躍的に向上させるHTML/CSS最新仕様「content-visibility」「Lazy loading」「contain」をコード付き簡単解説』などがあります。
  • 表示速度を飛躍的に向上させるHTML/CSS最新仕様「content-visibility」「Lazy loading」「contain」をコード付き簡単解説

    これまではJavaScriptを用いて実装するしかありませんでしたが、ついにimgやiframe要素であればloading="lazy"を付与するだけで、簡単に実装できます。 <!-- 画像に適用する場合 --> <img src="pic.png" alt="画像の詳細" loading="lazy"> <!-- iframeに適用する場合 --> <iframe src="external.html" loading="lazy"></iframe>画面外では読み込みが発生しないので、必要になった時(画面内に要素が入りそうになった時)に読み込みが発生するのでパフォーマンスが向上します。 また画像についてはsrcsetを用いたレスポンシブな画像に対しても指定できますし、picture要素を用いてfallback形式でも記述できます。 <img src="normal.png" srcse

      表示速度を飛躍的に向上させるHTML/CSS最新仕様「content-visibility」「Lazy loading」「contain」をコード付き簡単解説
    • Loading...

        Loading...
      • 画像の遅延読み込みにloading属性とJavaScriptを併用した最大限のパフォーマンスを発揮させる実装方法

        画像やiframeの遅延読み込みに使用するloading属性と非サポートブラウザ用にJavaScriptを併用した現代的なアプローチで、最大限のパフォーマンスを発揮させる実装方法を紹介します。 Best way to lazy load images for maximum performance by Adrian Bece 下記は各ポイントを意訳したものです。 ※当ブログでの翻訳記事は、元サイト様にライセンスを得て翻訳しています。 はじめに 遅延読み込みのloading属性とは 遅延読み込みの現代的なアプローチ パフォーマンスとLighthouseスコアの向上 最大のパフォーマンスを得るための画像最適化テクニック はじめに 画像の遅延読み込みは比較的簡単に実装でき、パフォーマンスを大幅に向上させることができるため、Webサイトを最適化するために使用される選択肢の1つです。遅延読み込みで

          画像の遅延読み込みにloading属性とJavaScriptを併用した最大限のパフォーマンスを発揮させる実装方法
        • Loading...

            Loading...
          • Loading...

              Loading...
            • Loading...

                Loading...
              • Maximally optimizing image loading for the web

                In this post I'll outline 8 image loading optimization techniques to minimize both the bandwidth used for loading images on the web and the CPU usage for image display. I'll present them in the form of an annotated HTML example to make it easy for folks to reproduce the results. Some of these techniques are more established, while others are somewhat novel. Ideally, your favorite mechanism for pub

                  Maximally optimizing image loading for the web
                • 家庭用ゲーム機の「NOW LOADING」の始まりからローディングの歴史を振り返ってみた

                  今回のテーマは「ローディング(ロード)」だ。現在の家庭用ビデオゲーム機では、ゲーム機の起動時、ゲーム開始前、さらにはゲーム中と、もはや据置型・携帯型を問わず、ローディングがつきものになっているのは言うまでもない。 これに対して、「ファミリーコンピュータ」(以下、ファミコン)のカセットがロードなしですぐに遊べたような手軽さが失われたことを嘆く声も、しばしば聞かれる。「プレイステーション」(以下、PS)版の『リッジレーサー』ではミニゲームが遊べたりと、ローディングにも趣向が凝らされることはあるが、待ち時間には変わりない。 『SEGA AGES スペースハリアー』のローディング画面 ビデオゲームにおいて、プログラムやデータのロード中であることを示す代表的な“決まり文句”といえば、先の『リッジレーサー』でも使われた「NOW LOADING」だろう。 近年ではゲーム・アニメ関連の楽曲や、小説などの題

                    家庭用ゲーム機の「NOW LOADING」の始まりからローディングの歴史を振り返ってみた
                  • How I cut GTA Online loading times by 70%

                    GTA Online. Infamous for its slow loading times. Having picked up the game again to finish some of the newer heists I was shocked (/s) to discover that it still loads just as slow as the day it was released 7 years ago. It was time. Time to get to the bottom of this. ReconFirst I wanted to check if someone had already solved this problem. Most of the results I found pointed towards anecdata about

                      How I cut GTA Online loading times by 70%
                    • Loading...

                      • Loading...

                          Loading...
                        • Rails 6.1: Horizontal Sharding, Multi-DB Improvements, Strict Loading, Destroy Associations in Background, Error Objects, and more!

                          Rails 6.1: Horizontal Sharding, Multi-DB Improvements, Strict Loading, Destroy Associations in Background, Error Objects, and more! Rails 6.1 has been released and wow does it have a lot of great stuff! We’ve been hard at work these past few months implementing improvements to multiple databases, adding support for destroying associations in jobs instead of in-memory, turning errors into objects,

                            Rails 6.1: Horizontal Sharding, Multi-DB Improvements, Strict Loading, Destroy Associations in Background, Error Objects, and more!
                          • Loading...

                            • The performance effects of too much lazy loading  |  Articles  |  web.dev

                              Lazy loading is a technique that defers downloading a resource until it's needed, to conserve data and reduce network contention for critical assets. It became a web standard in 2019 and today loading="lazy" for images is supported by most major browsers. This guide summarizes how publicly available web transparency data and ad hoc A/B testing was analyzed to understand the adoption and performanc

                              • Loading...

                                • nuxt/content で作成した Web サイトで Markdown 内の画像を Native Lazy-loading を行う

                                  nuxt/content で作成した Web サイトで Markdown 内の画像を Native Lazy-loading を行う2020/09/02 普段ブログや技術メモを書くとき、お手軽な画像ホスティングとして Gyazo を利用していたりします。 Patreon を開設していた頃に OSS の README に貼る GIF をサクッと取りたいという動機で Gyazo Pro を契約後、もう2,3年 Pro を継続。画像アセットの管理が結構面倒なのもあって、無限に使えてちゃんとホスティングされることが担保されていることから、このブログでも画像は全て Gyazo に載せていたり。 あと個人的に増井さんのファンなのもあって、長らく愛用しています。 Gyazo 自体は便利で愛用している一方、無計画にスクショを撮って Copy Markdown Snippet をし続けると当たり前にサイトが

                                    nuxt/content で作成した Web サイトで Markdown 内の画像を Native Lazy-loading を行う
                                  • Loading...

                                      Loading...
                                    • On-demand Container Loading in AWS Lambda | USENIX

                                      Marc Brooker, Mike Danilov, Chris Greenwood, and Phil Piwonka, Amazon Web Services Awarded Best Paper! AWS Lambda is a serverless event-driven compute service, part of a category of cloud compute offerings sometimes called Function-as-a-service (FaaS). When we first released AWS Lambda, functions were limited to 250MB of code and dependencies, packaged as a simple compressed archive. In 2020, we r

                                      • Loading...

                                          Loading...
                                        • CSS Loaders: A collection of more than 600 loading animations

                                          The Biggest Collection of Loading Animations Over 600+ CSS-only loaders made using a single element <div class="loader"></div> Don't know which loader to use? Here is one for you 👇 Click the loader to copy the CSS Get another CSS Loader

                                            CSS Loaders: A collection of more than 600 loading animations
                                          • Rails 6.1の新機能「strict_loading」でN+1を検知する

                                            こんにちは。 GMOアドマーケティングの石丸(@thomi40)です。 昨年の12月にRuby on Rails 6.1の新機能の1つである「annotate_rendered_view_with_filenames」について紹介しました。 この記事は GMOアドマーケティング Advent Calendar 2020 8日目の記事です。はじめにこんにちは。GMOアドマーケティングの石丸(@thomi40)です。弊社では複数のプロダクトでRuby on Railsを使って開発を行っています。今回はRails 6.1で導入が予定されている「annotate_rendered_view_with_filenames」について紹介します。annotate_rendered_view_with_filenamesとは?annotate_rendered_view_with_filenames は

                                              Rails 6.1の新機能「strict_loading」でN+1を検知する
                                            • Rails 6.1 RC1: Horizontal Sharding, Multi-DB Improvements, Strict Loading, Destroy Associations in Background, Error Objects, and more!

                                              Rails 6.1 RC1: Horizontal Sharding, Multi-DB Improvements, Strict Loading, Destroy Associations in Background, Error Objects, and more! The first release candidate for Rails 6.1 has been released and wow does it have a lot of great stuff! We’ve been hard at work these past few months implementing improvements to multiple databases, adding support for destroying associations in jobs instead of in-m

                                                Rails 6.1 RC1: Horizontal Sharding, Multi-DB Improvements, Strict Loading, Destroy Associations in Background, Error Objects, and more!
                                              • GitHub - dlt-hub/dlt: data load tool (dlt) is an open source Python library that makes data loading easy 🛠️

                                                You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                  GitHub - dlt-hub/dlt: data load tool (dlt) is an open source Python library that makes data loading easy 🛠️
                                                • GitHub - QwikDev/qwik: Instant-loading web apps, without effort

                                                  You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                                                    GitHub - QwikDev/qwik: Instant-loading web apps, without effort
                                                  • Loading...

                                                    • Loading...

                                                        Loading...
                                                      • 仕様と実装から読み解くHTMLのloading属性 - dwango on GitHub

                                                        こんにちは。ニコニコQセクションのHajime-san(GitHub)です。 本稿では、HTMLのloading属性の仕様とブラウザの実装を解いていきます。これにより、ブラウザからのコンテンツ配信の最適化を支える判断材料の1つとなれば幸いです。 執筆の動機 筆者が開発に携わっているサービスであるニコニコオーディションが間接的に利用している社内ファミリーサービスについて、ふと自分のスマートフォンで見てみたところページの初期表示に時間がかかるように感じました。 オーディションシステムはiframe要素によって社内ファミリーサービスなどに専用のUIを埋め込むことが可能になっており、iframe要素のloading属性を用いた「遅延読み込み」(以下、遅延読み込みはloading属性によるもの)が効果的なのではないかと考えました。 まずは、実際にloading="lazy"を適用して読み込みが後回し

                                                          仕様と実装から読み解くHTMLのloading属性 - dwango on GitHub
                                                        • Chromium では Prefetch や Prerender を総称して Speculative Loading と呼ぶことになった話

                                                          Chromium では Prefetch や Prerender といった投機的なリソースローディング機能を総称して Preloading と呼んでいました。しかし、Preloading という名称は既に広く使われており、特に具体的な API である <link rel=preload> や Service Worker の Navigation Preload などと被ってしまうため、評判がよくありませんでした。 I've complained before that "preload" is a heavily overused term in frontend/#webperf, with many conflicting meanings and nuances. Now Google will make it even worse by using "preloading" fo

                                                            Chromium では Prefetch や Prerender を総称して Speculative Loading と呼ぶことになった話
                                                          • Safari 15.4では「Lazy Image Loading」が正式にサポートされ画像の遅延読み込みが可能に。

                                                            Safari 15.4では画像の遅延読み込み「Lazy Image Loading」が正式にサポートされています。詳細は以下から。 Appleは現地時間2022年03月14日、MacやiPhone/iPad向けに「macOS 12.3 Monterey」や「iOS/iPadOS 15.4」をリリースし、同バージョンにではデフォルトブラウザであるSafariが「Safari v15.4」へアップデートされていますが、このSafari v15.4では画像の遅延読み込み「Lazy Image Loading」がデフォルトでサポートされています。 Let’s start with HTML. WebKit added support for lazy-loading images with the loading attribute on the element, providing web de

                                                              Safari 15.4では「Lazy Image Loading」が正式にサポートされ画像の遅延読み込みが可能に。
                                                            • Whirl: CSS loading animations with minimal effort!

                                                              • Open Source SVG Loading Icons

                                                                You can use these SVG based loading icons (also known as spinners, throbbers, loaders) to visually indicate when content is loading or data is being fetched. These animations have been curated from a variety of sources and all have MIT License. Therefore, they can be used commercially without restrictions and it requires no attribution.

                                                                • Loading...

                                                                  • Loading...

                                                                      Loading...
                                                                    • Loading...

                                                                      • Loading...

                                                                          Loading...
                                                                        • Loading...

                                                                            Loading...
                                                                          • Loading...

                                                                              Loading...
                                                                            • Loading...

                                                                                Loading...
                                                                              • 【挑戦者求ム】ぼくの考える最速のData LoadingとData Augmentation(Kaggle notebook) - Qiita

                                                                                はじめに まぁタイトルの通りなのですが、Kaggle notebook上で行う最速のData LoadingとData Augmentationを考えてみたので紹介します。より速い方法を知っている方は教えてください! 今回の題材は以下のように設定します。 データ こちらのコンペのデータを使います。10.2k枚のjpg形式の犬の画像です。 https://www.kaggle.com/c/dog-breed-identification/data 実行環境 GPUをenableにしたKaggle notebookで行います。 2 CPU cores 13 GB RAM Tesla P100 条件 trainデータ(画像とラベル)をすべてTensorにしてGPUにLoadするのにかかる時間を計測する バッチサイズは64 前処理 & Data Augmentationとして以下の処理をかける。(

                                                                                  【挑戦者求ム】ぼくの考える最速のData LoadingとData Augmentation(Kaggle notebook) - Qiita
                                                                                • loading=”lazy”が使えるのはimgタグとiframeタグ、videoタグには使えない

                                                                                  “https://www.youtube.com/embed/16RxJwNwvfQ” Youtubeの動画のURLをWordPressの投稿画面に貼り付けると下のような感じで自動的に動画の埋め込みに変換してくれる これは、URLをこんな感じのhtmlに自動的に変換してくれているから <iframe loading=”lazy” class=”youtube-player” width=”1256″ height=”707″ src=”https://www.youtube.com/embed/16RxJwNwvfQ”></iframe> lazyload WordPressには標準機能でimgタグやiframeタグにloading=”lazy”を追加してくれるので、自分で書かなくてもOK loazyloadというのは動画がページの表示範囲に入ってくるまでは動画を読み込みしないための設定

                                                                                    loading=”lazy”が使えるのはimgタグとiframeタグ、videoタグには使えない

                                                                                  新着記事