diff options
author | Carson Gross <carson@bigsky.software> | 2025-01-30 10:24:00 -0700 |
---|---|---|
committer | Carson Gross <carson@bigsky.software> | 2025-01-30 10:24:00 -0700 |
commit | 1c3556c30e22ddaee9b872b9d106433b31cb5ecc (patch) | |
tree | 0a0bc9e337b86111e2b76963023bf0aacf78af89 /www/content/essays/view-transitions.md | |
parent | ac03dc540f79326c3be86102f319268552e3baf5 (diff) | |
parent | b0797be8cd7a59856a39a7b0e50e7f0dcc629aef (diff) | |
download | htmx-1c3556c30e22ddaee9b872b9d106433b31cb5ecc.tar.gz htmx-1c3556c30e22ddaee9b872b9d106433b31cb5ecc.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'www/content/essays/view-transitions.md')
-rw-r--r-- | www/content/essays/view-transitions.md | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/www/content/essays/view-transitions.md b/www/content/essays/view-transitions.md index 35d462d7..582dba70 100644 --- a/www/content/essays/view-transitions.md +++ b/www/content/essays/view-transitions.md @@ -1,9 +1,16 @@ +++ template = "demo.html" title = "View Transitions" +description = """\ + Carson Gross explores the evolution of web applications and the significance of view transitions in improving user \ + experience. He discusses the limitations of traditional web design, where full-page refreshes create an unpleasant \ + experience, and how modern technologies like CSS transitions and the View Transition API aim to enhance aesthetic \ + smoothness. Carson explains how htmx leverages the View Transition API to bring seamless transitions to \ + hypermedia-driven applications, offering an alternative to single-page applications (SPAs) and highlighting its \ + potential once widely available in HTML.""" date = 2023-04-11 +authors = ["Carson Gross"] [taxonomies] -author = ["Carson Gross"] tag = ["posts"] +++ @@ -18,7 +25,7 @@ the application, even if it has feature-parity with an SPA version: > delete a contact. This is because every user interaction (link click or form submission) requires a full page > refresh, with a whole new HTML document to process after each action. > -> *–Hypermedia Systems - [Chapter 5](https://hypermedia.systems/book/extending-html-as-hypermedia/)* +> *–Hypermedia Systems - [Chapter 4](https://hypermedia.systems/extending-html-as-hypermedia/)* This jarring "ka-chunk" between webpages, often with a [Flash of Unstyled Content](https://webkit.org/blog/66/the-fouc-problem/) has been with us forever and, while modern browsers have improved the situation somewhat (while, unfortunately, also making |