Browse Source

canvi imatge inici automatic, falta acabar d'ajustar q sigui suau

pull/1/head
idoctnef 8 years ago
parent
commit
0ae2c68b1c
13 changed files with 12 additions and 1 deletions
  1. BIN
      imatges/background/background0.jpg
  2. BIN
      imatges/background/background1.jpg
  3. BIN
      imatges/background/background2.jpg
  4. BIN
      imatges/background/background3.jpg
  5. BIN
      imatges/background/background4.jpg
  6. BIN
      imatges/background/background5.jpg
  7. BIN
      imatges/background/background6.jpg
  8. BIN
      imatges/background/background7.jpg
  9. BIN
      imatges/background/background8.jpg
  10. BIN
      imatges/background/background9.jpg
  11. +1
    -1
      index.html
  12. +9
    -0
      index.js
  13. +2
    -0
      own.css

BIN
imatges/background/background0.jpg

Before After
Width: 1920  |  Height: 1080  |  Size: 1.2 MiB

BIN
imatges/background/background1.jpg

Before After
Width: 1920  |  Height: 1080  |  Size: 1.0 MiB

BIN
imatges/background/background2.jpg

Before After
Width: 1920  |  Height: 1080  |  Size: 968 KiB

BIN
imatges/background/background3.jpg

Before After
Width: 1920  |  Height: 1080  |  Size: 1.1 MiB

BIN
imatges/background/background4.jpg

Before After
Width: 1920  |  Height: 1080  |  Size: 1.1 MiB

BIN
imatges/background/background5.jpg

Before After
Width: 1920  |  Height: 1080  |  Size: 1.5 MiB

BIN
imatges/background/background6.jpg

Before After
Width: 1920  |  Height: 1080  |  Size: 959 KiB

BIN
imatges/background/background7.jpg

Before After
Width: 1920  |  Height: 1080  |  Size: 1.0 MiB

BIN
imatges/background/background8.jpg

Before After
Width: 1920  |  Height: 1080  |  Size: 1.8 MiB

BIN
imatges/background/background9.jpg

Before After
Width: 1920  |  Height: 1080  |  Size: 1.2 MiB

+ 1
- 1
index.html

@ -22,7 +22,7 @@
</head>
<body onload='OnLoadIndex();'>
<div class='own-container'>
<img class='own-indexBackgroundImage' src='imatges/mainBackground.jpg' />
<img id='backgroundImage' class='own-indexBackgroundImage' src='imatges/mainBackground.jpg' />
<div class='own-lang own-whiteText'>
<a href="#">CAT</a>
<a href='#'>CAST</a>

+ 9
- 0
index.js

@ -15,6 +15,15 @@ function OnLoadDefault(){
function OnLoadIndex(){
OnLoadDefault();
var numImg=0;
setInterval(function(){
document.getElementById("backgroundImage").src="imatges/background/background"+numImg+".jpg";
numImg++;
if(numImg>9)
{
numImg=0;
}
}, 5000);
}
function OnLoadNosaltres(){
OnLoadDefault();

+ 2
- 0
own.css

@ -35,6 +35,7 @@ a:active {
position: fixed;
left: 0px;
top: 0px;
}
}
@ -46,6 +47,7 @@ a:active {
position: fixed;
left: 0px;
top: 0px;
}
}
.own-langIndex{

Loading…
Cancel
Save