menu background images

This commit is contained in:
ManjaroOne666 2019-01-30 19:53:07 +00:00
parent 727b975867
commit 86dc804b03
11 changed files with 27 additions and 16 deletions

View File

@ -1,5 +1,6 @@
## Menu ## Menu
* Proper background images for hover effect * Proper background images for hover effect
* don't load background images on mobile
## contact ## contact
* form background image * form background image
@ -11,9 +12,6 @@
* facebook/twitter social card thingies * facebook/twitter social card thingies
* page titles * page titles
## Image viewer
* close icon
## Services ## Services
* background image for mobile * background image for mobile

View File

@ -79,11 +79,11 @@ export default {
data () { data () {
return { return {
siteNav: [ siteNav: [
{ 'to': '/', 'text': 'Home', bgImgUrl: 'https://via.placeholder.com/300x800/ff0000'}, { 'to': '/', 'text': 'Home', bgImgUrl: '/img/devices--bw.jpg'},
{ 'to': '/galleries', 'text': 'Galleries', bgImgUrl: 'https://via.placeholder.com/300x800/00ff00' }, { 'to': '/galleries', 'text': 'Galleries', bgImgUrl: '/img/photo-box--bw.jpg' },
{ 'to': '/services', 'text': 'Services', bgImgUrl: 'https://via.placeholder.com/300x800/0000ff' }, { 'to': '/services', 'text': 'Services', bgImgUrl: '/img/camera--bw.jpg' },
{ 'to': '/about', 'text': 'About Me', bgImgUrl: 'https://via.placeholder.com/300x800/00ffff' }, { 'to': '/about', 'text': 'About Me', bgImgUrl: '/img/silhouette--dark.jpg' },
{ 'to': '/contact', 'text': 'Contact Me', bgImgUrl: 'https://via.placeholder.com/300x800/ffff00' }, { 'to': '/contact', 'text': 'Contact Me', bgImgUrl: '/img/mail--bw.jpg' },
], ],
socialNav: [ socialNav: [
{ 'to': 'https://www.instagram.com', 'text': 'Instagram', icon: 'instagram' }, { 'to': 'https://www.instagram.com', 'text': 'Instagram', icon: 'instagram' },
@ -93,9 +93,6 @@ export default {
] ]
} }
}, },
methods: {
}
} }
</script> </script>
@ -497,6 +494,7 @@ $transition-timing: .5s;
.menu-link-background { .menu-link-background {
background-size: cover; background-size: cover;
background-position: center center;
transition: opacity .5s; transition: opacity .5s;
opacity: 0; opacity: 0;
@ -514,16 +512,31 @@ $transition-timing: .5s;
background: linear-gradient( background: linear-gradient(
to bottom, to bottom,
rgba($color, 0), rgba($color, 0),
rgba($color, .5), rgba($color, .7),
rgba($color, .5), rgba($color, .7),
rgba($color, 0) rgba($color, 0)
),
linear-gradient(
to right,
rgba($color, 1),
rgba($color, .2) 50%,
rgba($color, 0) 90%,
rgba($color, 1)
),
linear-gradient(
to bottom,
rgba($color, 1),
rgba($color, 0) 20%,
rgba($color, 0) 80%,
rgba($color, 1) 90%,
rgba($color, 1)
); );
} }
} }
.site-nav__item:hover .menu-link-background { .site-nav__item:hover .menu-link-background {
transition: opacity 2s; transition: opacity 1s;
opacity: .05; opacity: .4;
} }
.social-background { .social-background {
@ -541,7 +554,7 @@ $transition-timing: .5s;
} }
.social-nav-item:hover .social-background { .social-nav-item:hover .social-background {
transition: opacity 2s; transition: opacity 1s;
opacity: .15; opacity: .15;
} }

BIN
static/img/camera--bw.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
static/img/camera.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 677 KiB

BIN
static/img/devices--bw.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
static/img/mail--bw.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
static/img/mail.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 178 KiB

BIN
static/img/photo-box--bw.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

BIN
static/img/photo-box.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 240 KiB

BIN
static/img/silhouette--dark.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
static/img/silhouette.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB