From 11c1996e46dd639fd624413e9e33448028219d47 Mon Sep 17 00:00:00 2001 From: ManjaroOne666 Date: Wed, 9 Jan 2019 14:12:30 +0000 Subject: [PATCH] thumbnail rows (large devices) shown when active --- TODO.md | 1 + components/GalleryFeatured.vue | 3 ++- components/GalleryPage.vue | 12 ++++++--- components/GalleryThumbs.vue | 48 +++++++++++++++++++++++++++++----- components/ThumbNav.vue | 2 +- 5 files changed, 54 insertions(+), 12 deletions(-) diff --git a/TODO.md b/TODO.md index a9b87aa..b23b994 100644 --- a/TODO.md +++ b/TODO.md @@ -1,2 +1,3 @@ ## Services Page * Have background change as scrolling down the services? +* menu items (large devices) = nice big images with text coming out diff --git a/components/GalleryFeatured.vue b/components/GalleryFeatured.vue index b8b8550..0e97110 100644 --- a/components/GalleryFeatured.vue +++ b/components/GalleryFeatured.vue @@ -3,7 +3,8 @@ diff --git a/components/GalleryPage.vue b/components/GalleryPage.vue index 24a7143..73d0efc 100644 --- a/components/GalleryPage.vue +++ b/components/GalleryPage.vue @@ -6,10 +6,12 @@ @@ -36,11 +38,15 @@ export default { data () { return { featuredImageHeight: '16rem', - imageViewerIsVisible: false + imageViewerIsVisible: false, + activeRow: 0 } }, methods: { + handleFeaturedClick (index) { + this.activeRow = index + } } } diff --git a/components/GalleryThumbs.vue b/components/GalleryThumbs.vue index b0b6078..231fb57 100644 --- a/components/GalleryThumbs.vue +++ b/components/GalleryThumbs.vue @@ -3,7 +3,9 @@