remove unused javascript
This commit is contained in:
parent
644f44f175
commit
872e9139ac
5 changed files with 0 additions and 11469 deletions
|
@ -17,11 +17,5 @@
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-2.2.4.min.js"
|
|
||||||
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
|
@ -1,131 +0,0 @@
|
||||||
function galleryFilter(showValue) {
|
|
||||||
const elems = document.getElementsByClassName("gallery-item");
|
|
||||||
const dElems = document.getElementsByClassName("gallery-description");
|
|
||||||
const showElems = document.getElementsByClassName(showValue);
|
|
||||||
|
|
||||||
for(let i = 0; i < dElems.length; i++){
|
|
||||||
const dElem = dElems[i];
|
|
||||||
dElem.style.display='none';
|
|
||||||
}
|
|
||||||
|
|
||||||
for(let i = 0; i < elems.length; i++){
|
|
||||||
const elem = elems[i];
|
|
||||||
elem.style.display='none';
|
|
||||||
}
|
|
||||||
|
|
||||||
for(let i = 0; i < showElems.length; i++){
|
|
||||||
const sElem = showElems[i];
|
|
||||||
sElem.style.display='initial';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
let currImgArr = [];
|
|
||||||
|
|
||||||
let currImgInd = 0;
|
|
||||||
|
|
||||||
let currImg = 'img/portfolio-01.jpg';
|
|
||||||
|
|
||||||
function openModalAll(className, imgArr) {
|
|
||||||
const elems = document.getElementsByClassName(className);
|
|
||||||
|
|
||||||
elems[0].style.display = imgArr ? 'flex' : 'none';
|
|
||||||
|
|
||||||
currImgArr = imgArr;
|
|
||||||
}
|
|
||||||
|
|
||||||
function zoomModal(initIndex) {
|
|
||||||
const elems = document.getElementsByClassName("modal-gallery");
|
|
||||||
|
|
||||||
elems[0].style.display = initIndex === false ? 'none' : 'flex';
|
|
||||||
|
|
||||||
currImgInd = initIndex;
|
|
||||||
|
|
||||||
currImg = 'img/' + currImgArr[currImgInd];
|
|
||||||
|
|
||||||
const imgElems = document.getElementsByClassName("modal-gallery-image");
|
|
||||||
|
|
||||||
imgElems[0].src = currImg;
|
|
||||||
|
|
||||||
const nextElems = document.getElementsByClassName("modal-gallery-button-next");
|
|
||||||
if(currImgInd === (currImgArr.length - 1)){
|
|
||||||
nextElems[0].style.visibility = 'hidden';
|
|
||||||
nextElems[0].style.pointerEvents = 'none';
|
|
||||||
} else {
|
|
||||||
nextElems[0].style.visibility = 'visible';
|
|
||||||
nextElems[0].style.pointerEvents = 'initial';
|
|
||||||
}
|
|
||||||
|
|
||||||
const prevElems = document.getElementsByClassName("modal-gallery-button-prev");
|
|
||||||
if(currImgInd === 0){
|
|
||||||
prevElems[0].style.visibility = 'hidden';
|
|
||||||
prevElems[0].style.pointerEvents = 'none';
|
|
||||||
} else {
|
|
||||||
prevElems[0].style.visibility = 'visible';
|
|
||||||
prevElems[0].style.pointerEvents = 'initial';
|
|
||||||
}
|
|
||||||
|
|
||||||
if(imgArr.length === 1){
|
|
||||||
nextElems[0].style.visibility = 'hidden';
|
|
||||||
nextElems[0].style.pointerEvents = 'none';
|
|
||||||
} else {
|
|
||||||
nextElems[0].style.visibility = 'visible';
|
|
||||||
nextElems[0].style.pointerEvents = 'initial';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function nextImg() {
|
|
||||||
currImgInd += 1;
|
|
||||||
|
|
||||||
currImg = 'img/' + currImgArr[currImgInd];
|
|
||||||
|
|
||||||
const imgElems = document.getElementsByClassName("modal-gallery-image");
|
|
||||||
|
|
||||||
imgElems[0].src = currImg;
|
|
||||||
|
|
||||||
const nextElems = document.getElementsByClassName("modal-gallery-button-next");
|
|
||||||
if(currImgInd === (currImgArr.length - 1)){
|
|
||||||
nextElems[0].style.visibility = 'hidden';
|
|
||||||
nextElems[0].style.pointerEvents = 'none';
|
|
||||||
} else {
|
|
||||||
nextElems[0].style.visibility = 'visible';
|
|
||||||
nextElems[0].style.pointerEvents = 'initial';
|
|
||||||
}
|
|
||||||
|
|
||||||
const prevElems = document.getElementsByClassName("modal-gallery-button-prev");
|
|
||||||
if(currImgInd === 0){
|
|
||||||
prevElems[0].style.visibility = 'hidden';
|
|
||||||
prevElems[0].style.pointerEvents = 'none';
|
|
||||||
} else {
|
|
||||||
prevElems[0].style.visibility = 'visible';
|
|
||||||
prevElems[0].style.pointerEvents = 'initial';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function prevImg() {
|
|
||||||
currImgInd -= 1;
|
|
||||||
|
|
||||||
currImg = 'img/' + currImgArr[currImgInd];
|
|
||||||
|
|
||||||
const imgElems = document.getElementsByClassName("modal-gallery-image");
|
|
||||||
|
|
||||||
imgElems[0].src = currImg;
|
|
||||||
|
|
||||||
const nextElems = document.getElementsByClassName("modal-gallery-button-next");
|
|
||||||
if(currImgInd === (currImgArr.length - 1)){
|
|
||||||
nextElems[0].style.visibility = 'hidden';
|
|
||||||
nextElems[0].style.pointerEvents = 'none';
|
|
||||||
} else {
|
|
||||||
nextElems[0].style.visibility = 'visible';
|
|
||||||
nextElems[0].style.pointerEvents = 'initial';
|
|
||||||
}
|
|
||||||
|
|
||||||
const prevElems = document.getElementsByClassName("modal-gallery-button-prev");
|
|
||||||
if(currImgInd === 0){
|
|
||||||
prevElems[0].style.visibility = 'hidden';
|
|
||||||
prevElems[0].style.pointerEvents = 'none';
|
|
||||||
} else {
|
|
||||||
prevElems[0].style.visibility = 'visible';
|
|
||||||
prevElems[0].style.pointerEvents = 'initial';
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
161
js/index.html
161
js/index.html
|
@ -1,161 +0,0 @@
|
||||||
<!doctype html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<title>bricabracomania.</title>
|
|
||||||
<link href="css/styles.css" rel="stylesheet" type="text/css">
|
|
||||||
<link rel="icon"
|
|
||||||
type="image/png"
|
|
||||||
href="/img/myicon.png" />
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<body style="background-color:black;">
|
|
||||||
<header>
|
|
||||||
<img src="img/logo.png" alt="bricabracomania logo" class="logo">
|
|
||||||
<nav>
|
|
||||||
<ul>
|
|
||||||
<li><a href="">Home</a></li>
|
|
||||||
<li><a href="">About</a></li>
|
|
||||||
<li><a href="">Contact</a></li>
|
|
||||||
</ul>
|
|
||||||
</nav>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<section class="home-hero parallax--bg">
|
|
||||||
<div class="container">
|
|
||||||
<h1 class="title parallax--box"><span><img src="img/title.png" alt="title"></span>
|
|
||||||
</h1>
|
|
||||||
<a href="" class="button button-accent">See Our Work</a>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<div class="container">
|
|
||||||
<section class="home-about">
|
|
||||||
|
|
||||||
<div class="home-about-textbox parallax--box">
|
|
||||||
<h1>Who we are</h1>
|
|
||||||
<p><i>Bricabracomania metalworks is home of antique-inspired, alternative jewelry with an obscure, sculptural twist.</i></p>
|
|
||||||
<p><strong>Every design is created with passion and devotion in the best traditions of wax carving by hand, experimenting with forms and textures, as well as unconventional material combinations and patinas.</strong> We celebrate statement pieces, bold designs and mix of eras – from classical forms of ancient Rome to intricate details of Victorian memorabilia. Our creations are inspired by legends, religious motives and occult, pirate tales and cabinets of curiosities; are meant to become life companions and talismans for their owners.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<section class="portfolio">
|
|
||||||
<h1>Some of our work</h1>
|
|
||||||
|
|
||||||
<!-- portfolio item 01 -->
|
|
||||||
<figure class="port-item">
|
|
||||||
<img src="img/portfolio-01.jpg" alt="portfolio item">
|
|
||||||
<figcaption class="port-desc">
|
|
||||||
<p>Project title</p>
|
|
||||||
<a href="" class="button button-accent button-small">Project details</a>
|
|
||||||
</figcaption>
|
|
||||||
</figure>
|
|
||||||
|
|
||||||
<!-- portfolio item 02 -->
|
|
||||||
<figure class="port-item">
|
|
||||||
<img src="img/portfolio-02.jpg" alt="portfolio item">
|
|
||||||
<figcaption class="port-desc">
|
|
||||||
<p>Project title</p>
|
|
||||||
<a href="" class="button button-accent button-small">Project details</a>
|
|
||||||
</figcaption>
|
|
||||||
</figure>
|
|
||||||
|
|
||||||
<!-- portfolio item 03 -->
|
|
||||||
<figure class="port-item">
|
|
||||||
<img src="img/portfolio-03.jpg" alt="portfolio item">
|
|
||||||
<figcaption class="port-desc">
|
|
||||||
<p>Project title</p>
|
|
||||||
<a href="" class="button button-accent button-small">Project details</a>
|
|
||||||
</figcaption>
|
|
||||||
</figure>
|
|
||||||
|
|
||||||
<!-- portfolio item 04 -->
|
|
||||||
<figure class="port-item">
|
|
||||||
<img src="img/portfolio-04.jpg" alt="portfolio item">
|
|
||||||
<figcaption class="port-desc">
|
|
||||||
<p>Project title</p>
|
|
||||||
<a href="" class="button button-accent button-small">Project details</a>
|
|
||||||
</figcaption>
|
|
||||||
</figure>
|
|
||||||
|
|
||||||
<!-- portfolio item 05 -->
|
|
||||||
<figure class="port-item">
|
|
||||||
<img src="img/portfolio-05.jpg" alt="portfolio item">
|
|
||||||
<figcaption class="port-desc">
|
|
||||||
<p>Project title</p>
|
|
||||||
<a href="" class="button button-accent button-small">Project details</a>
|
|
||||||
</figcaption>
|
|
||||||
</figure>
|
|
||||||
|
|
||||||
<!-- portfolio item 06 -->
|
|
||||||
<figure class="port-item">
|
|
||||||
<img src="img/portfolio-06.jpg" alt="portfolio item">
|
|
||||||
<figcaption class="port-desc">
|
|
||||||
<p>Project title</p>
|
|
||||||
<a href="" class="button button-accent button-small">Project details</a>
|
|
||||||
</figcaption>
|
|
||||||
</figure>
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<section class="cta">
|
|
||||||
<div class="container">
|
|
||||||
<h1 class="title title-cta">Want to order?
|
|
||||||
<span>Then what are you waiting for?</span>
|
|
||||||
</h1>
|
|
||||||
<a href="" class="button button-dark">Order</a>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
|
|
||||||
<footer>
|
|
||||||
<div class="container">
|
|
||||||
<div class="col-3">
|
|
||||||
<p>Hancarved jewellery loved and produced by</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="col-1">
|
|
||||||
<ul class="unstyled-list">
|
|
||||||
<li><strong>Brc</strong></li>
|
|
||||||
<li>Metalworkds</li>
|
|
||||||
<li>Unique</li>
|
|
||||||
<li>Madman's</li>
|
|
||||||
<li>Basement</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="col-1">
|
|
||||||
<ul class="unstyled-list">
|
|
||||||
<li><strong>Follow us</strong></li>
|
|
||||||
<li>Instagram</li>
|
|
||||||
<li>Etsy</li>
|
|
||||||
<li>Whatever</li>
|
|
||||||
<li>Floats your boat</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="col-1">
|
|
||||||
<ul class="unstyled-list">
|
|
||||||
<li><strong>Licensed by</strong></li>
|
|
||||||
<li>Lietuvos</li>
|
|
||||||
<li>Prabavimo</li>
|
|
||||||
<li>Rumai</li>
|
|
||||||
<li>LPR</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<script
|
|
||||||
src="https://code.jquery.com/jquery-2.2.4.min.js"
|
|
||||||
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
|
|
||||||
crossorigin="anonymous"></script>
|
|
||||||
|
|
||||||
<script src="js/parallax.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,18 +0,0 @@
|
||||||
$(window).scroll(function() {
|
|
||||||
parallax();
|
|
||||||
})
|
|
||||||
|
|
||||||
function parallax() {
|
|
||||||
|
|
||||||
var wScroll = $(window).scrollTop()
|
|
||||||
|
|
||||||
|
|
||||||
// $('.parallax--bg').css('background-position', 'center ' + (wScroll*0.75)+'px');
|
|
||||||
|
|
||||||
|
|
||||||
// $('.parallax--box').css('top', -5 + (wScroll*.005)+'em')
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue