Activities
38 |39 |
├── .stickler.yml ├── assets ├── img │ ├── dome.png │ ├── avatar.png │ ├── gray-squares.png │ ├── hero-section.png │ ├── lineup │ │ ├── frank.jpg │ │ ├── lana.jpg │ │ ├── rage.jpg │ │ ├── yorke.jpg │ │ ├── calvin.jpg │ │ └── travis.jpg │ ├── events │ │ ├── madrid.jpg │ │ └── santiago.jpg │ ├── hero-section2.png │ ├── loachella-icon1.svg │ ├── loachella-icon2.svg │ ├── loachella-logo-primary.svg │ ├── loachella-logo-secondary.svg │ └── loachella-logo-third.svg ├── fonts │ ├── Cocogoose_trial.otf │ └── Cocogoose-Pro-trial.ttf └── js │ ├── positioning-index.js │ └── header-footer-positioning.js ├── src ├── pages │ ├── about │ │ ├── about-positioning.js │ │ ├── about-skeleton.html │ │ ├── about.css │ │ └── about.html │ ├── schedule │ │ ├── schedule-positioning.js │ │ ├── schedule-skeleton.html │ │ ├── schedule.css │ │ └── schedule.html │ ├── ticketes │ │ ├── ticketes-positioning.js │ │ ├── Tickets.js │ │ ├── ticketes-skeleton.html │ │ ├── tickets.css │ │ └── tickets.html │ └── application │ │ ├── App-positioning.js │ │ ├── App.js │ │ ├── App-skeleton.html │ │ ├── App.css │ │ └── App.html └── components │ ├── footer │ ├── footer.css │ └── footer.html │ ├── scroll-header │ ├── scrolling-navbar.js │ ├── scroll-header.css │ └── scroll-header.html │ └── header │ ├── header.css │ └── header.html ├── .gitignore ├── README.md ├── index.html ├── style.css └── stylelint.config.js /.stickler.yml: -------------------------------------------------------------------------------- 1 | linters: 2 | stylelint: 3 | 4 | config: 'stylelint.config.js' -------------------------------------------------------------------------------- /assets/img/dome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertil291utn/concert-tickets/HEAD/assets/img/dome.png -------------------------------------------------------------------------------- /assets/img/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertil291utn/concert-tickets/HEAD/assets/img/avatar.png -------------------------------------------------------------------------------- /assets/img/gray-squares.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertil291utn/concert-tickets/HEAD/assets/img/gray-squares.png -------------------------------------------------------------------------------- /assets/img/hero-section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertil291utn/concert-tickets/HEAD/assets/img/hero-section.png -------------------------------------------------------------------------------- /assets/img/lineup/frank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertil291utn/concert-tickets/HEAD/assets/img/lineup/frank.jpg -------------------------------------------------------------------------------- /assets/img/lineup/lana.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertil291utn/concert-tickets/HEAD/assets/img/lineup/lana.jpg -------------------------------------------------------------------------------- /assets/img/lineup/rage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertil291utn/concert-tickets/HEAD/assets/img/lineup/rage.jpg -------------------------------------------------------------------------------- /assets/img/lineup/yorke.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertil291utn/concert-tickets/HEAD/assets/img/lineup/yorke.jpg -------------------------------------------------------------------------------- /assets/img/events/madrid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertil291utn/concert-tickets/HEAD/assets/img/events/madrid.jpg -------------------------------------------------------------------------------- /assets/img/hero-section2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertil291utn/concert-tickets/HEAD/assets/img/hero-section2.png -------------------------------------------------------------------------------- /assets/img/lineup/calvin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertil291utn/concert-tickets/HEAD/assets/img/lineup/calvin.jpg -------------------------------------------------------------------------------- /assets/img/lineup/travis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertil291utn/concert-tickets/HEAD/assets/img/lineup/travis.jpg -------------------------------------------------------------------------------- /assets/fonts/Cocogoose_trial.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertil291utn/concert-tickets/HEAD/assets/fonts/Cocogoose_trial.otf -------------------------------------------------------------------------------- /assets/img/events/santiago.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertil291utn/concert-tickets/HEAD/assets/img/events/santiago.jpg -------------------------------------------------------------------------------- /src/pages/about/about-positioning.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | //load page elements 3 | $("#main").load("about.html"); 4 | 5 | }); -------------------------------------------------------------------------------- /assets/fonts/Cocogoose-Pro-trial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bertil291utn/concert-tickets/HEAD/assets/fonts/Cocogoose-Pro-trial.ttf -------------------------------------------------------------------------------- /src/pages/schedule/schedule-positioning.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | //load page elements 3 | $("#main").load("schedule.html"); 4 | 5 | }); -------------------------------------------------------------------------------- /src/pages/ticketes/ticketes-positioning.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | //load page elements 3 | $("#main").load("tickets.html"); 4 | 5 | }); -------------------------------------------------------------------------------- /assets/js/positioning-index.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | //load page elements 3 | $("#app").load("/src/pages/application/App-skeleton.html"); 4 | 5 | }); -------------------------------------------------------------------------------- /src/pages/application/App-positioning.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | //load page elements 3 | $("#main").load("/src/pages/application/App.html"); 4 | 5 | }); -------------------------------------------------------------------------------- /assets/js/header-footer-positioning.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | // load page elements 3 | $("#encabezado").load("/src/components/header/header.html"); 4 | $("#pie-de-pagina").load("/src/components/footer/footer.html"); 5 | $("#scroll-header").load("/src/components/scroll-header/scroll-header.html"); 6 | 7 | }); -------------------------------------------------------------------------------- /assets/img/loachella-icon1.svg: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /assets/img/loachella-icon2.svg: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /src/components/footer/footer.css: -------------------------------------------------------------------------------- 1 | .footer { 2 | background-color: #2e2e2e; 3 | color: var(--third-color); 4 | } 5 | 6 | .footer .container-fluid { 7 | display: flex; 8 | align-items: center; 9 | justify-content: space-evenly; 10 | padding-top: 60px; 11 | padding-bottom: 60px; 12 | } 13 | 14 | .info-footer p { 15 | font-size: 14px; 16 | } 17 | 18 | @media only screen and (min-width: 992px) { 19 | .logo { 20 | margin-left: 15%; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/components/scroll-header/scrolling-navbar.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | window.onscroll = function () { myFunction() }; 3 | 4 | var navTwo = document.getElementById("scroll-header"); 5 | navTwo.classList.add("d-none") 6 | function myFunction() { 7 | 8 | if (window.pageYOffset >= 300) { 9 | navTwo.classList.remove("d-none") 10 | } 11 | else { 12 | navTwo.classList.add("d-none") 13 | } 14 | } 15 | }); -------------------------------------------------------------------------------- /src/pages/application/App.js: -------------------------------------------------------------------------------- 1 | //get button view more 2 | function viewMore() { 3 | var elementsToShow = document.getElementById("view-more"); 4 | var nameButton = document.getElementById("name-button"); 5 | var iconButton = document.getElementById("icon-button"); 6 | 7 | if (elementsToShow.classList.contains("d-none")) { 8 | elementsToShow.classList.remove("d-none"); 9 | nameButton.innerHTML="LESS"; 10 | iconButton.classList.remove("fa-angle-down"); 11 | iconButton.classList.add("fa-angle-up"); 12 | } 13 | else { 14 | elementsToShow.classList.add("d-none"); 15 | nameButton.innerHTML="MORE"; 16 | iconButton.classList.remove("fa-angle-up"); 17 | iconButton.classList.add("fa-angle-down"); 18 | 19 | } 20 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # File created using '.gitignore Generator' for Visual Studio Code: https://bit.ly/vscode-gig 2 | 3 | # Created by https://www.gitignore.io/api/windows 4 | # Edit at https://www.gitignore.io/?templates=windows 5 | 6 | ### Windows ### 7 | # Windows thumbnail cache files 8 | Thumbs.db 9 | Thumbs.db:encryptable 10 | ehthumbs.db 11 | ehthumbs_vista.db 12 | 13 | # Dump file 14 | *.stackdump 15 | 16 | # Folder config file 17 | [Dd]esktop.ini 18 | 19 | # Recycle Bin used on file shares 20 | $RECYCLE.BIN/ 21 | 22 | # Windows Installer files 23 | *.cab 24 | *.msi 25 | *.msix 26 | *.msm 27 | *.msp 28 | 29 | # Windows shortcuts 30 | *.lnk 31 | 32 | # End of https://www.gitignore.io/api/windows 33 | 34 | # Custom rules (everything added below won't be overriden by 'Generate .gitignore File' if you use 'Update' option) 35 | 36 | node_modules/* 37 | package-lock.json 38 | .vscode -------------------------------------------------------------------------------- /src/components/scroll-header/scroll-header.css: -------------------------------------------------------------------------------- 1 | .fixed { 2 | position: fixed; 3 | top: 0; 4 | right: 0; 5 | background-color: #fff; 6 | width: 100%; 7 | z-index: 100; 8 | } 9 | 10 | .flex-adjust-center { 11 | display: flex; 12 | justify-content: space-between; 13 | align-items: center; 14 | } 15 | 16 | .left-side-scroll { 17 | margin-top: 10px; 18 | margin-bottom: 10px; 19 | } 20 | 21 | .left-side-scroll i { 22 | color: var(--secondary-color); 23 | } 24 | 25 | .list-links i { 26 | margin-right: 10px; 27 | } 28 | 29 | .left-side-scroll a:hover i { 30 | color: var(--primary-color); 31 | } 32 | 33 | .left-side-scroll a:hover { 34 | color: var(--primary-color); 35 | text-decoration: none; 36 | } 37 | 38 | .border-shadow-scroll { 39 | /* position: absolute; */ 40 | box-shadow: -5px -2px 14px 6px #ee523c; 41 | 42 | /* margin-top: 30%; */ 43 | } 44 | 45 | .list-links li { 46 | margin: 12px; 47 | text-align: center; 48 | } 49 | 50 | @media only screen and (max-width: 461px) { 51 | .list-links i { 52 | margin-right: 0; 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /src/components/footer/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 |
6 |
7 |
Loachella showcases popular and established musical artists as 20 | well as emerging artists and reunited groups. It is one of the largest, most famous, and 21 | most profitable music festivals around the world
22 |Please contact us per email for any further questions about festival 25 |
26 | 27 |info@loachella.fest
29 | 30 |1 day ticket
46 |15.Apr.(Wed)
47 | 49 | 51 |2 day ticket
54 |16.Apr.(Thu)
58 | 60 | 62 |15-16.Apr.(Wed-Thu)
66 | 68 | 70 |VISA affiliates
76 |15-16.Apr.(Wed-Thu)
77 | 79 | 81 |
100 | Get your late night groove on in The Dome Dance party nightly. 103 | The music rages on, yet silently, starting at 1am. Stop by early on Thur only for 104 | the Vintage Merch Sale to get your oldchella on! Check back in late March for more 105 | details.
106 |Annual music and arts festival, features musical artists from many genres 23 | of music, including rock, pop, indie, hip hop and electronic dance music, as well as art 24 | installations and sculptures. Across the grounds, several stages continuously host live music. 25 |
26 |
113 |
115 | Formed in 1991, the group consists of vocalist Zack de la Rocha, bassist and backing 120 | vocalist Tim Commerford, guitarist Tom Morello, and drummer Brad Wilk.
121 |
127 |
129 | Jacques Berman Webster II, known professionally as Travis Scott, is an American 134 | rapper, 135 | singer, songwriter, and record producer.
136 |
144 |
146 | He began his musical career as a ghostwriter, prior to joining hip hop collective Odd 151 | Future in 2010. In 2011, Ocean released his critically successful debut mixtape 152 | Nostalgia, Ultra
153 |
159 |
161 | Adam Richard Wiles, known professionally as Calvin Harris, is a Scottish DJ, record 166 | producer, singer, and songwriter. He is known for his singles "We Found Love", "This 167 | Is 168 | What You Came For", "Summer", "Feel So Close", "Feels", and “One Kiss
169 |
175 |
177 | Thomas Edward Yorke is an English musician and the main vocalist and songwriter of 182 | the 183 | rock band Radiohead. A multi-instrumentalist, he mainly plays guitar and keyboards, 184 | and 185 | is known for his falsetto.
186 |
192 |
194 | Elizabeth Woolridge Grant, known professionally as Lana Del Rey, is an American 199 | singer, 200 | songwriter, musician and record producer.
201 |The music rages on, yet silently, starting at 1am. Stop by early on Thur only for the Vintage Merch 58 | Sale to get your oldchella on! Check back in late March for more details.
59 |09:30-10:00
85 |Registration
86 |10:00-10:10
90 |Opening Remarks
91 |TBD
92 |10:10-10:40 (30‘)
96 |Budlight introduction
100 |Run the Jewels
102 |Budlight Tent
103 |10:40-10:50(10‘)
108 |Rest
109 |10:50-12:10 (80‘)
114 |Frank Ocean
119 |Huge experience with Frank Ocean since two loachella festivals ago
122 |Loach Tent
124 |Frank Ocean
135 |Huge experience with Frank Ocean since two loachella festivals ago
137 |Loach Tent
139 |Tom Yorke
150 |From Essex United Kingdom it's a pleasure to bring you TY
152 |Red Bull section
154 |12:10-13:20(70‘)
167 |Rest
168 |13:20-14:50 (90‘)
173 |Calvin Harris
178 |Located in the top ten DJ all around the world CH cames with energy to enjoy us
180 |Red Bull section
182 |Le Louvre Art Expo
193 |Each season, the Louvre features a series of temporary exhibitions, each the result of the latest expert research.
195 |Louchella art exhibitions
197 |Lana del Rey
208 |With her romance, glamour, and melancholia music she brings at LFM
210 |Red Bull section
212 | 213 |10:40-10:50(10‘)
221 |Rest
222 |13:20-14:50 (90‘)
227 |Travis Scott
232 |The californian raper TS brings us his latest released album Jackboys
235 |Toyota campaign
237 |Rage Against the Machine
248 |Our last creme de la creme guests since 90 their music has transcended 2 generations
250 |Toyota campaign
252 |Rage Against the Machine
263 |Our last creme de la creme guests since 90 their music has transcended 2 generations
265 |Toyota campaign
267 | 268 |10:40-10:50(10‘)
276 |Rest
277 |13:20-14:50 (90‘)
282 |British DJs for the closure festival
286 |Disclosure
288 |Toyota campaign
289 |13:20-14:50 (90‘)
295 |Calvin Harris, Tiesto and Disclosure
299 |The Dome
301 |