Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fazo
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nuriddin
fazo
Commits
86f759fc
Commit
86f759fc
authored
Oct 24, 2019
by
Khumoyunmirzo Sodiqov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
video
parent
bc53d2dc
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
495 additions
and
346 deletions
+495
-346
app.js
public/assets/slider/js/app.js
+8
-8
fazo.mp4
public/video/fazo.mp4
+0
-0
main.blade.php
resources/views/main.blade.php
+403
-258
video.blade.php
resources/views/video.blade.php
+20
-0
welcome.blade.php
resources/views/welcome.blade.php
+60
-80
web.php
routes/web.php
+4
-0
No files found.
public/assets/slider/js/app.js
View file @
86f759fc
...
@@ -54,7 +54,7 @@
...
@@ -54,7 +54,7 @@
pager
:
false
,
pager
:
false
,
minSlides
:
1
,
minSlides
:
1
,
maxSlides
:
5
,
maxSlides
:
5
,
moveSlides
:
2
,
moveSlides
:
5
,
slideWidth
:
210
,
slideWidth
:
210
,
slideMargin
:
25
,
slideMargin
:
25
,
prevSelector
:
$
(
'#client-prev'
),
prevSelector
:
$
(
'#client-prev'
),
...
@@ -69,7 +69,7 @@
...
@@ -69,7 +69,7 @@
// Bind to scroll
// Bind to scroll
$
(
window
).
scroll
(
function
()
{
$
(
window
).
scroll
(
function
()
{
//Display or hide scroll to top button
//Display or hide scroll to top button
if
(
$
(
this
).
scrollTop
()
>
100
)
{
if
(
$
(
this
).
scrollTop
()
>
100
)
{
$
(
'.scrollup'
).
fadeIn
();
$
(
'.scrollup'
).
fadeIn
();
}
else
{
}
else
{
...
@@ -295,8 +295,8 @@ $("#send-mail").click(function () {
...
@@ -295,8 +295,8 @@ $("#send-mail").click(function () {
/************************
/************************
Animate elements
Animate elements
*************************/
*************************/
//Animate thumbnails
//Animate thumbnails
jQuery
(
'.thumbnail'
).
one
(
'inview'
,
function
(
event
,
visible
)
{
jQuery
(
'.thumbnail'
).
one
(
'inview'
,
function
(
event
,
visible
)
{
if
(
visible
==
true
)
{
if
(
visible
==
true
)
{
jQuery
(
this
).
addClass
(
"animated fadeInDown"
);
jQuery
(
this
).
addClass
(
"animated fadeInDown"
);
...
@@ -313,7 +313,7 @@ $("#send-mail").click(function () {
...
@@ -313,7 +313,7 @@ $("#send-mail").click(function () {
jQuery
(
this
).
removeClass
(
"animated fadeInDown"
);
jQuery
(
this
).
removeClass
(
"animated fadeInDown"
);
}
}
});
});
//animate first team member
//animate first team member
jQuery
(
'#first-person'
).
bind
(
'inview'
,
function
(
event
,
visible
)
{
jQuery
(
'#first-person'
).
bind
(
'inview'
,
function
(
event
,
visible
)
{
if
(
visible
==
true
)
{
if
(
visible
==
true
)
{
...
@@ -322,7 +322,7 @@ $("#send-mail").click(function () {
...
@@ -322,7 +322,7 @@ $("#send-mail").click(function () {
jQuery
(
'#first-person'
).
removeClass
(
"animated pulse"
);
jQuery
(
'#first-person'
).
removeClass
(
"animated pulse"
);
}
}
});
});
//animate sectond team member
//animate sectond team member
jQuery
(
'#second-person'
).
bind
(
'inview'
,
function
(
event
,
visible
)
{
jQuery
(
'#second-person'
).
bind
(
'inview'
,
function
(
event
,
visible
)
{
if
(
visible
==
true
)
{
if
(
visible
==
true
)
{
...
@@ -340,7 +340,7 @@ $("#send-mail").click(function () {
...
@@ -340,7 +340,7 @@ $("#send-mail").click(function () {
jQuery
(
'#third-person'
).
removeClass
(
"animated pulse"
);
jQuery
(
'#third-person'
).
removeClass
(
"animated pulse"
);
}
}
});
});
//Animate price columns
//Animate price columns
jQuery
(
'.price-column, .testimonial'
).
bind
(
'inview'
,
function
(
event
,
visible
)
{
jQuery
(
'.price-column, .testimonial'
).
bind
(
'inview'
,
function
(
event
,
visible
)
{
if
(
visible
==
true
)
{
if
(
visible
==
true
)
{
...
@@ -349,7 +349,7 @@ $("#send-mail").click(function () {
...
@@ -349,7 +349,7 @@ $("#send-mail").click(function () {
jQuery
(
this
).
removeClass
(
"animated fadeInDown"
);
jQuery
(
this
).
removeClass
(
"animated fadeInDown"
);
}
}
});
});
//Animate contact form
//Animate contact form
jQuery
(
'.contact-form'
).
bind
(
'inview'
,
function
(
event
,
visible
)
{
jQuery
(
'.contact-form'
).
bind
(
'inview'
,
function
(
event
,
visible
)
{
if
(
visible
==
true
)
{
if
(
visible
==
true
)
{
...
...
public/video/fazo.mp4
0 → 100644
View file @
86f759fc
File added
resources/views/main.blade.php
View file @
86f759fc
This diff is collapsed.
Click to expand it.
resources/views/video.blade.php
0 → 100644
View file @
86f759fc
<!DOCTYPE html>
<html>
<head>
<title>
Fazoshop | Доставка любого вида груза из США во все регионы Узбекистана.
</title>
<meta
name=
"format-detection"
content=
"telephone=no"
>
<meta
name=
"viewport"
content=
"width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=Edge"
>
<meta
charset=
"utf-8"
>
</head>
<body>
<video
width=
"400"
controls
>
<source
src=
"{{ asset('video') }}/fazo.mp4"
type=
"video/mp4"
>
{{--
<source
src=
"mov_bbb.ogg"
type=
"video/ogg"
>
--}}
Your browser does not support HTML5 video.
</video>
</body>
</html>
resources/views/welcome.blade.php
View file @
86f759fc
<!doctype html>
<!doctype html>
<html
lang=
"{{ app()->getLocale() }}"
>
<html
lang=
"{{ app()->getLocale() }}"
>
<head>
<head>
<meta
charset=
"utf-8"
>
<meta
charset=
"utf-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<title>
Laravel
</title>
<title>
Laravel
</title>
<!-- Fonts -->
<!-- Fonts -->
<link
href=
"https://fonts.googleapis.com/css?family=Raleway:100,600"
rel=
"stylesheet"
type=
"text/css"
>
<link
href=
"https://fonts.googleapis.com/css?family=Raleway:100,600"
rel=
"stylesheet"
type=
"text/css"
>
<!-- Styles -->
<!-- Styles -->
<style>
<style>
html
,
body
{
html
,
body
{
background-color
:
#fff
;
background-color
:
#fff
;
color
:
#636b6f
;
color
:
#636b6f
;
font-family
:
'Raleway'
,
sans-serif
;
font-family
:
'Raleway'
,
sans-serif
;
font-weight
:
100
;
font-weight
:
100
;
height
:
100vh
;
height
:
100vh
;
margin
:
0
;
margin
:
0
;
}
}
.full-height
{
.full-height
{
height
:
100vh
;
height
:
100vh
;
}
}
.flex-center
{
.flex-center
{
align-items
:
center
;
align-items
:
center
;
display
:
flex
;
display
:
flex
;
justify-content
:
center
;
justify-content
:
center
;
}
}
.position-ref
{
.position-ref
{
position
:
relative
;
position
:
relative
;
}
}
.top-right
{
.top-right
{
position
:
absolute
;
position
:
absolute
;
right
:
10px
;
right
:
10px
;
top
:
18px
;
top
:
18px
;
}
}
.content
{
.content
{
text-align
:
center
;
text-align
:
center
;
}
}
.title
{
.title
{
font-size
:
84px
;
font-size
:
84px
;
}
}
.links
>
a
{
.links
>
a
{
color
:
#636b6f
;
color
:
#636b6f
;
padding
:
0
25px
;
padding
:
0
25px
;
font-size
:
12px
;
font-size
:
12px
;
font-weight
:
600
;
font-weight
:
600
;
letter-spacing
:
.1rem
;
letter-spacing
:
.1rem
;
text-decoration
:
none
;
text-decoration
:
none
;
text-transform
:
uppercase
;
text-transform
:
uppercase
;
}
}
.m-b-md
{
.m-b-md
{
margin-bottom
:
30px
;
margin-bottom
:
30px
;
}
}
</style>
</style>
</head>
</head>
<body>
<body>
<div
class=
"flex-center position-ref full-height"
>
@if (Route::has('login'))
<div
class=
"top-right links"
>
@auth
<a
href=
"{{ url('/home') }}"
>
Home
</a>
@else
<a
href=
"{{ route('login') }}"
>
Login
</a>
<a
href=
"{{ route('register') }}"
>
Register
</a>
@endauth
</div>
@endif
<div
class=
"content"
>
<video
width=
"100%"
controls
autoplay
>
<div
class=
"title m-b-md"
>
<source
src=
"{{ asset('video') }}/fazo.mp4"
type=
"video/mp4"
>
Laravel
{{--
<source
src=
"mov_bbb.ogg"
type=
"video/ogg"
>
--}}
</div>
Your browser does not support HTML5 video.
</video>
<div
class=
"links"
>
</body>
<a
href=
"https://laravel.com/docs"
>
Documentation
</a>
<a
href=
"https://laracasts.com"
>
Laracasts
</a>
<a
href=
"https://laravel-news.com"
>
News
</a>
<a
href=
"https://forge.laravel.com"
>
Forge
</a>
<a
href=
"https://github.com/laravel/laravel"
>
GitHub
</a>
</div>
</div>
</div>
</body>
</html>
</html>
routes/web.php
View file @
86f759fc
...
@@ -14,6 +14,10 @@
...
@@ -14,6 +14,10 @@
Route
::
get
(
'/'
,
function
()
{
Route
::
get
(
'/'
,
function
()
{
return
view
(
'main'
);
return
view
(
'main'
);
});
});
Route
::
get
(
'/watch'
,
function
()
{
return
view
(
'welcome'
);
});
//
//
//Auth::routes();
//Auth::routes();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment