-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsites.php
140 lines (113 loc) · 2.88 KB
/
websites.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Pi Design Group Darmstadt</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/foundation.css"/>
<script src="js/custom.modernizr.js"></script>
<script src="js/jquery.js"></script>
<script src="js/easing.js"></script>
<script src="js/jquery.debouncedresize.js"></script>
<script src="js/script.js"></script>
<style type="text/css">
li{
line-height: 18px;
}
h1{
margin-bottom: 3px;
font-family: kl !important;
font-size: 65px;
}
p{
line-height: 18px;
}
.websites a{
font-size: 19px;
font-family: km !important;
}
.text,.img{
float: left;
z-index: 33;
}
div[bg]{
right: 0 !important
}
.text{
}
div[bg]{
opacity: 0;
}
.website_wrapper{
opacity: 0;
position: fixed;
bottom: 90px;
left: 50%;
margin-left: -470px;
z-index: 1000;
width: 1356px;
}
.img{
margin-left: -330px;
}
.always{
opacity: 1 !important;
}
@media only screen and (max-width: 700px){
.img{
display: none;
}
}
</style>
</head>
<body>
<?php include ("header.php"); ?>
<div style="background:url(img/background_website/1.png);" bg="0" class="bg1"></div>
<div class="website_wrapper" wrapper="0">
<div class="text">
<div class="websites">
<h1>Websites</h1>
<p style="margin-bottom:40px">Fordern Sie unsere Kompetenzen, um das Potential<br> des Internets
für Ihr Unternehmen optimal zu nutzen.<br>Von der Konzeption bis zum Onlinemarketing stehen<br> Ihnen unsere Spezialisten zur Seite.</p>
<p style="font-size:18px;margin-bottom:17px" class="midbold">Unsere Leistungen</p>
<ul style="margin-bottom:40px">
<li>– Konzeption / Strukturierung / Layout</li>
<li>– Fotoproduktion</li>
<li>– Suchmaschinenoptimierte Texte</li>
<li>– Suchmaschinenoptimierte Programmierung</li>
<li>– Beratung / Betreuung / Pflege / Hosting</li>
<li>– Onlinemarketing</li>
</ul>
<a href="website_slider.php">Arbeitsbeispiele ansehen</a>
</div>
</div>
<div class="img">
<img class="websites" src="img/intro/exponat_intro1.png">
</div>
</div>
<div class="back_grad"></div>
<?php include ("footer.php"); ?>
<script type="text/javascript">
$(document).ready(function(){
setTimeout(function(){
$('.website_wrapper,div[bg]').animate({opacity:1}, 750,function(){
$('div[bg]').addClass('always');
});
},100)
blink();
function blink(){
$('.websites a').animate({opacity:0.2}, 750,function(){
$('.websites a').animate({opacity:1}, 750,function(){
blink();
});
});
}
});
</script>
</body>
</html>