Browse Source

adding all files

master
rosh 4 years ago
parent
commit
e374f28151
  1. BIN
      buildings/buildings/1.png
  2. BIN
      buildings/buildings/2.png
  3. BIN
      buildings/buildings/3.png
  4. BIN
      buildings/buildings/4.png
  5. BIN
      buildings/buildings/5.png
  6. 10872
      jquery-3.5.1.js
  7. 2
      jquery-3.5.1.min.js
  8. 16
      myScript1.js
  9. 81
      mystyle.css

BIN
buildings/buildings/1.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 340 KiB

BIN
buildings/buildings/2.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 KiB

BIN
buildings/buildings/3.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 KiB

BIN
buildings/buildings/4.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 199 KiB

BIN
buildings/buildings/5.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 KiB

10872
jquery-3.5.1.js

File diff suppressed because it is too large

2
jquery-3.5.1.min.js

File diff suppressed because one or more lines are too long

16
myScript1.js

@ -0,0 +1,16 @@
window.onload=function() {
var element = document.getElementById("myBar");
var width = 1;
var identity = setInterval(scene, 10);
function scene() {
if (width >= 100) {
clearInterval(identity);
} else {
width++;
element.style.width = width + '%';
}
}
}

81
mystyle.css

@ -0,0 +1,81 @@
#slider {
overflow: hidden;
}
#slider figure {
align-items: center;
position: relative;
animation: slider 5s linear 1s infinite;
}
@keyframes slider {
0% {
left:0;
}
25% {
left: -25%;
}
75% {
left: -50%;
}
100% {
left: -75%;
}
}
#black {
color: black;
font-family: Verdana;
font-style: bold;
}
#white {
color: white;
font-family: Verdana;
font-style: bold;
}
#CG {
color: black;
font-family: Elephant;
}
#myProgress {
width: 50%;
background-color: grey;
}
#myBar {
width: 1%;
height: 5px;
background-color: black;
}
a {
text-decoration: none;
display: inline-block;
padding: 8px 16px;
}
a:hover {
background-color: #ddd;
color: black;
}
.previous {
background-color: #f1f1f1;
color: black;
}
.next {
background-color: #f1f1f1;
color: black;
}
.round {
border-radius: 50%;
}
Loading…
Cancel
Save