Black_Bird
05.11.2018, 01:23
Что в коде не так?
Html:
Код:
SoftWest Corporation
}
$(document).ready(function(){
$(".about").click(function(){
$(".SoftWest").fadeOut(1000);
$(".Comp").fadeOut(1000);
});
$(".golovna").click(function(){
$(".SoftWest").eq(0).fadeIn(1000);
$(".Comp").eq(0).fadeIn(1000);
});
});
Головна
Про розробників
Проекти
Soft West
Компанія Веб розробки
Css:
Код:
.wrap
{
width: 100%;
max-width: 1100px;
margin: 0 auto;
}
.logo img
{
width: 13%;
height: 8%;
position: absolute;
top: -1%;
left: 1%;
}
.background img
{
width: 101%;
height: 93%;
position: absolute;
top: 7%;
left: -1%;
}
.golovna a
{
font-family: 'Times New Roman';
font-size: 2.5vw;
color: black;
position: absolute;
top: 1%;
left: 25%;
}
.golovna a:hover
{
transition: 0.5s;
color: grey;
font-size: 3vw;
position: absolute;
top: 0%;
left: 24%;
}
.about a
{
font-family: 'Times New Roman';
font-size: 2.5vw;
color: black;
position: absolute;
top: 1%;
left: 48%;
}
.about a:hover
{
color: grey;
font-size: 3vw;
position: absolute;
top: 0%;
left: 47%;
}
.project a
{
font-family: 'Times New Roman';
font-size: 2.5vw;
color: black;
position: absolute;
top: 1%;
left: 80%;
}
.project a:hover
{
transition: 0.5s;
color: grey;
font-size: 3vw;
position: absolute;
top: 0%;
left: 79%;
}
.SoftWest h1
{
font-weight: normal;
animation-name: start;
animation-duration: 0.7s;
animation-timing-function: ease-in;
font-family: 'Archive';
color: white;
font-size: 13vw;
position: absolute;
left: 15%;
}
.Comp h5
{
animation-name: startcomp;
animation-duration: 0.7s;
animation-timing-function: linear;
font-weight: 100;
font-family: 'square721 BT';
font-size: 5vw;
color: white;
font-weight: lighter;
position: absolute;
left: 25%;
top: 20%;
}
@keyframes startcomp{
0%{
animation-delay: 1s;
transform: translateY(-1000%);
}
100%{
transform: translateY(0%);
}
}
@keyframes start
{
0%
{
transform: translateY(-100%);
}
100%
{
transform: translateY(0%);
}
}
Ps: при нажатии кнопки about надпись исчезает и снова появляется
Html:
Код:
SoftWest Corporation
}
$(document).ready(function(){
$(".about").click(function(){
$(".SoftWest").fadeOut(1000);
$(".Comp").fadeOut(1000);
});
$(".golovna").click(function(){
$(".SoftWest").eq(0).fadeIn(1000);
$(".Comp").eq(0).fadeIn(1000);
});
});
Головна
Про розробників
Проекти
Soft West
Компанія Веб розробки
Css:
Код:
.wrap
{
width: 100%;
max-width: 1100px;
margin: 0 auto;
}
.logo img
{
width: 13%;
height: 8%;
position: absolute;
top: -1%;
left: 1%;
}
.background img
{
width: 101%;
height: 93%;
position: absolute;
top: 7%;
left: -1%;
}
.golovna a
{
font-family: 'Times New Roman';
font-size: 2.5vw;
color: black;
position: absolute;
top: 1%;
left: 25%;
}
.golovna a:hover
{
transition: 0.5s;
color: grey;
font-size: 3vw;
position: absolute;
top: 0%;
left: 24%;
}
.about a
{
font-family: 'Times New Roman';
font-size: 2.5vw;
color: black;
position: absolute;
top: 1%;
left: 48%;
}
.about a:hover
{
color: grey;
font-size: 3vw;
position: absolute;
top: 0%;
left: 47%;
}
.project a
{
font-family: 'Times New Roman';
font-size: 2.5vw;
color: black;
position: absolute;
top: 1%;
left: 80%;
}
.project a:hover
{
transition: 0.5s;
color: grey;
font-size: 3vw;
position: absolute;
top: 0%;
left: 79%;
}
.SoftWest h1
{
font-weight: normal;
animation-name: start;
animation-duration: 0.7s;
animation-timing-function: ease-in;
font-family: 'Archive';
color: white;
font-size: 13vw;
position: absolute;
left: 15%;
}
.Comp h5
{
animation-name: startcomp;
animation-duration: 0.7s;
animation-timing-function: linear;
font-weight: 100;
font-family: 'square721 BT';
font-size: 5vw;
color: white;
font-weight: lighter;
position: absolute;
left: 25%;
top: 20%;
}
@keyframes startcomp{
0%{
animation-delay: 1s;
transform: translateY(-1000%);
}
100%{
transform: translateY(0%);
}
}
@keyframes start
{
0%
{
transform: translateY(-100%);
}
100%
{
transform: translateY(0%);
}
}
Ps: при нажатии кнопки about надпись исчезает и снова появляется