Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
bobcat-su_full
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sergey
bobcat-su_full
Commits
0190f2ef
Commit
0190f2ef
authored
Jan 10, 2019
by
Sergey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add tabs product
parent
1ccd9273
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
92 additions
and
4 deletions
+92
-4
product-tabs.js
src/js/product-tabs.js
+26
-0
product-info.scss
src/scss/product-info/product-info.scss
+36
-0
color.scss
src/scss/settings/color.scss
+3
-2
index.html
src/template/product-info/index.html
+27
-2
No files found.
src/js/product-tabs.js
0 → 100644
View file @
0190f2ef
'use strict'
;
(
function
()
{
function
checkTab
(
list
,
current
)
{
list
.
forEach
(
function
(
item
)
{
if
(
item
.
classList
.
contains
(
'active'
)
&&
item
!==
current
){
item
.
classList
.
remove
(
'active'
);
}
})
}
var
tabsList
=
document
.
querySelector
(
'.product__tabs-list'
);
if
(
tabsList
){
var
tabs
=
tabsList
.
querySelectorAll
(
'.product__tabs-item'
);
var
contentTabs
=
document
.
querySelectorAll
(
'.product__info-item'
);
tabs
.
forEach
(
function
(
itemTab
,
indexTab
)
{
itemTab
.
addEventListener
(
'click'
,
function
()
{
itemTab
.
classList
.
add
(
'active'
);
checkTab
(
tabs
,
itemTab
);
contentTabs
[
indexTab
].
classList
.
add
(
'active'
);
checkTab
(
contentTabs
,
contentTabs
[
indexTab
]);
})
})
}
})();
\ No newline at end of file
src/scss/product-info/product-info.scss
View file @
0190f2ef
@import
"../settings/color"
;
.product__tabs
{
width
:
100%
;
background
:
rgba
(
$color-tab
,.
3
);
}
.product__tabs-list
{
display
:
flex
;
list-style-type
:
none
;
padding-left
:
0
;
}
.product__tabs-item
{
padding
:
12px
;
color
:
white
;
border-right
:
1px
solid
white
;
user-select
:
none
;
cursor
:
pointer
;
transition
:
.2s
;
text-transform
:
uppercase
;
&
:hover
{
background
:
rgba
(
$color-tab
,.
4
);
}
}
.product__tabs-item.active
{
background
:
$grey-text
;
}
.product__info-item
{
display
:
none
;
}
.product__info-item.active
{
display
:
block
;
}
\ No newline at end of file
src/scss/settings/color.scss
View file @
0190f2ef
...
@@ -7,4 +7,5 @@ $grey-text: #727272;
...
@@ -7,4 +7,5 @@ $grey-text: #727272;
$footer
:
#333333
;
$footer
:
#333333
;
$bg-slider
:
#c4c4c4
;
$bg-slider
:
#c4c4c4
;
$dark-text
:
#323232
;
$dark-text
:
#323232
;
$grey-product
:
#dfdfdf
;
$grey-product
:
#dfdfdf
;
\ No newline at end of file
$color-tab
:
#323232
;
\ No newline at end of file
src/template/product-info/index.html
View file @
0190f2ef
<p>
dadas
</p>
<div
class=
"wrapper product__info"
>
\ No newline at end of file
<div
class=
"product__tabs"
>
<ul
class=
"product__tabs-list"
>
<li
class=
"product__tabs-item active"
>
Характеристики
</li>
<li
class=
"product__tabs-item"
>
Описание
</li>
<li
class=
"product__tabs-item"
>
Габаритные схемы
</li>
<li
class=
"product__tabs-item"
>
Техническая документация
</li>
</ul>
</div>
<div
class=
"product__info-container"
>
<div
class=
"product__info-list"
>
<div
class=
"product__info-item active"
>
<p>
Эксплотационные
</p>
</div>
<div
class=
"product__info-item"
>
<p>
Эксплотационные2
</p>
</div>
<div
class=
"product__info-item"
>
<p>
Эксплотационные3
</p>
</div>
<div
class=
"product__info-item"
>
<p>
Эксплотационные4
</p>
</div>
</div>
</div>
</div>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment