Changes for page Presentation Test Page
Last modified by Erik Bakker on 2024/07/30 14:39
From version 40.1
edited by Erik Bakker
on 2024/07/30 14:23
on 2024/07/30 14:23
Change comment:
There is no comment for this version
To version 41.1
edited by Erik Bakker
on 2024/07/30 14:26
on 2024/07/30 14:26
Change comment:
There is no comment for this version
Summary
-
Objects (1 modified, 0 added, 0 removed)
Details
- XWiki.StyleSheetExtension[0]
-
- Code
-
... ... @@ -1,8 +1,8 @@ 1 1 /* Styling the area of the slides */ 2 2 #slideshow { 3 3 overflow: hidden; 4 - height: 510px;5 - width: 728px;4 + height: 1240px; 5 + width: 860px; 6 6 margin: 0 auto; 7 7 } 8 8 ... ... @@ -10,8 +10,8 @@ 10 10 with a fixed width and height */ 11 11 .slide { 12 12 float: left; 13 - height: 510px;14 - width: 728px;13 + height: 1240px; 14 + width: 860px; 15 15 } 16 16 17 17 /* Add animation to the slides */ ... ... @@ -19,7 +19,7 @@ 19 19 20 20 /* Calculate the total width on the 21 21 basis of number of slides */ 22 - width: calc( 728px * 4);22 + width: calc(860px * 4); 23 23 24 24 /* Specify the animation with the 25 25 duration and speed */ ... ... @@ -55,14 +55,14 @@ 55 55 } 56 56 57 57 40% { 58 - margin-left: calc(- 728px * 1);58 + margin-left: calc(-860px * 1); 59 59 } 60 60 61 61 60% { 62 - margin-left: calc(- 728px * 2);62 + margin-left: calc(-860px * 2); 63 63 } 64 64 65 65 80% { 66 - margin-left: calc(- 728px * 3);66 + margin-left: calc(-860px * 3); 67 67 } 68 68 }