mirror of
https://github.com/Django-LiveView/docs.git
synced 2024-12-23 03:15:36 +01:00
Update
This commit is contained in:
parent
41fed983e6
commit
e11a032cc3
@ -313,6 +313,9 @@ a:hover,
|
|||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
/* Animate Background Image */
|
/* Animate Background Image */
|
||||||
-webkit-text-fill-color: transparent;
|
-webkit-text-fill-color: transparent;
|
||||||
|
text-fill-color: transparent;
|
||||||
|
-webkit-text-stroke: 1px;
|
||||||
|
text-stroke: 1px;
|
||||||
animation: aniTitle 10s linear infinite;
|
animation: aniTitle 10s linear infinite;
|
||||||
/* Activate hardware acceleration for smoother animations */
|
/* Activate hardware acceleration for smoother animations */
|
||||||
transform: translate3d(0, 0, 0);
|
transform: translate3d(0, 0, 0);
|
||||||
@ -320,6 +323,13 @@ a:hover,
|
|||||||
z-index: -1;
|
z-index: -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (width < 600px) {
|
||||||
|
.hero__title {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* Docs */
|
/* Docs */
|
||||||
.docs {
|
.docs {
|
||||||
display: grid;
|
display: grid;
|
||||||
|
2
one.org
2
one.org
@ -22,7 +22,7 @@ Django LiveView is a framework for creating Realtime SPAs using HTML over the Wi
|
|||||||
|
|
||||||
It allows you to create interactive web applications using only HTML, CSS and Python. JavaScript ONLY is used to capture events, send and receive strings over a WebSockets channel.
|
It allows you to create interactive web applications using only HTML, CSS and Python. JavaScript ONLY is used to capture events, send and receive strings over a WebSockets channel.
|
||||||
|
|
||||||
Let's illustrate with an example. I want to render article number 2.
|
Let's illustrate with an example. I want to print article number 2.
|
||||||
|
|
||||||
1- A WebSockets connection, a channel, is established between the client and the server.
|
1- A WebSockets connection, a channel, is established between the client and the server.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user