-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
99 additions
and
111 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"title":"December 20 Worship","date":"2020-12-20", "type": "onsite", "poster": "/videos/12.20.20-poster.jpg", "src":"/videos/sermon-12.20.20.mp4"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"title":"Christmas Eve Prelude","date":"2020-12-24", "src":"https://www.facebook.com/plugins/video.php?height=311&href=https%3A%2F%2Fwww.facebook.com%2F108822552519210%2Fvideos%2F404241520847280%2F&show_text=true&width=560"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"title":"Christmas Eve Worship","date":"2020-12-24", "src":"https://www.facebook.com/plugins/video.php?height=314&href=https%3A%2F%2Fwww.facebook.com%2F108822552519210%2Fvideos%2F431575684542318%2F&show_text=true&width=560"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"title":"December 27 Worship","date":"2020-12-27", "src":"https://www.facebook.com/plugins/video.php?height=311&href=https%3A%2F%2Fwww.facebook.com%2F108822552519210%2Fvideos%2F142720567624405%2F&show_text=true&width=560"} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<script> | ||
import {scale} from "svelte/transition" | ||
let words = ["kindness", "caring", "sharing", "giving", "compassion", "love", "openness", "pardon", "understanding", "discipleship", "servanthood", "stability", "hopefulness", "innocence", "prayerfulness", "praise", "gentleness", "knowledge", "happiness", "laughter", "acceptance", "self-control", "restraint", "mercy", "truth", "peace", "faith", "consideration", "fellowship", "unity", "teaching", "singing", "celebration", "perseverance", "judgment", "discipline", "courage", "confidence", "clarity", "honor", "contentment", "imagination", "commitment", "friendship", "freedom", "creativity", "devotion", "joy", "strength", "comfort", "leadership", "discernment", "obedience", "thoughtfulness", "responsibility", "patience", "forgiveness", "humility", "faithfulness", "hope", "tenderness", "enthusiasm", "evangelism", "healing", "loyalty", "rejoicing", "respect", "insight", "selflessness", "righteousness", "assurance", "justice", "honesty", "wisdom", "awareness", "tolerance", "wholeness", "guidance", "hospitality", "foresight", "trust", "learning", "proclamation", "encouragement", "trustworthiness", "inspiration", "wonder", "flexibility", "grace", "graciousness", "integrity", "helping", "witnessing", "generosity", "perceptiveness", "purity", "prayer", "service", "steadfastness", "determination", "nurturing", "renewal", "purpose", "peacefulness", "power", "excitement", "harmony", "reliability", "goodness", "reverence", "serenity", "humor", "boldness", "genuineness", "illumination", "vision", "dependability", "endurance", "listening", "accountability", "speaking", "sincerity", "writing", "music", "motivation", "art", "building", "crafts", "planning", "organization", "drama", "cheerfulness", "focus", "balance", "helpfulness", "languages", "cooking", "sympathy", "empathy", "sensitivity", "time", "conviction", "delight", "responsiveness", "education", "intelligence", "experience", "visitation", "sobriety", "spirituality", "travel", "thankfulness", "money", "dignity", "quietness", "playfulness", "dedication", "empathy", "solitude", "zeal", "appreciation", "affirmation", "charity"]; | ||
let word | ||
let showWord = true | ||
function changeWord() { | ||
showWord = false | ||
setTimeout(()=> { showWord = true; word = words[Math.floor(Math.random()*words.length)] }, 100) | ||
} | ||
changeWord() | ||
</script> | ||
|
||
<div class='stars' on:click={changeWord}> | ||
<!-- <img on:click={changeWord} id='starImg' src='uploads/events/star.png' alt='star image'> --> | ||
{#if showWord} | ||
<p transition:scale id='starWord'>{word}</p> | ||
{/if} | ||
</div> | ||
|
||
<style> | ||
.stars { | ||
cursor: pointer; | ||
margin: 0; | ||
height: 15em; width: 100%; | ||
position: relative; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
flex-direction: column; | ||
background-image: url('uploads/events/star.png'); | ||
background-size: contain; | ||
background-repeat: no-repeat; | ||
background-position-x: 50%; | ||
transition: transform .2s ease; | ||
} | ||
.stars:hover { | ||
transform: scale(1.1); | ||
} | ||
.starblock { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
#starWord { | ||
font-size: 2em; | ||
font-weight: bold; | ||
color: red; | ||
pointer-events: none; | ||
margin: 0; | ||
z-index: 1; | ||
} | ||
</style> |