Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mr-julyedu
Overview
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
baiguangyao
mr-julyedu
Commits
9fc1818d
Commit
9fc1818d
authored
Apr 18, 2019
by
baiguangyao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改底部样式
parent
587d04a0
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
307 additions
and
1 deletions
+307
-1
.history/src/common/Nav/NavLink/index_20190418122002.js
+21
-0
.history/src/common/Nav/NavLink/index_20190418122042.js
+21
-0
.history/src/common/Nav/index_20190418121111.js
+41
-0
.history/src/common/Nav/index_20190418122307.scss
+33
-0
.history/src/common/Nav/index_20190418122326.scss
+33
-0
.history/src/common/Nav/index_20190418122357.js
+41
-0
.history/src/common/Nav/index_20190418122421.js
+41
-0
.history/src/common/Nav/index_20190418122435.scss
+33
-0
.history/src/common/Nav/index_20190418122454.scss
+33
-0
src/common/Nav/index.js
+1
-1
src/common/Nav/index.scss
+9
-0
No files found.
.history/src/common/Nav/NavLink/index_20190418122002.js
0 → 100644
View file @
9fc1818d
import
React
,
{
Component
}
from
'react'
import
{
NavLink
}
from
'react-router-dom'
;
import
'./index.scss'
export
default
class
NavLinks
extends
Component
{
render
()
{
const
{
pathUrl
,
active
,
iconActive
,
icoName
,
linkName
,
...
rest
}
=
this
.
props
;
return
(
<
NavLink
{...
rest
}
to
=
{
pathUrl
}
activeClassName
=
{
active
}
className
=
{
"root-item"
}
>
<
i
activeClassName
=
{
iconActive
}
className
=
{
icoName
}
/
>
<
span
className
=
{
"text"
}
>
{
linkName
}
<
/span
>
<
/NavLink
>
)
}
}
\ No newline at end of file
.history/src/common/Nav/NavLink/index_20190418122042.js
0 → 100644
View file @
9fc1818d
import
React
,
{
Component
}
from
'react'
import
{
NavLink
}
from
'react-router-dom'
;
import
'./index.scss'
export
default
class
NavLinks
extends
Component
{
render
()
{
const
{
pathUrl
,
active
,
icoName
,
linkName
,
...
rest
}
=
this
.
props
;
return
(
<
NavLink
{...
rest
}
to
=
{
pathUrl
}
activeClassName
=
{
active
}
className
=
{
"root-item"
}
>
<
i
className
=
{
icoName
}
/
>
<
span
className
=
{
"text"
}
>
{
linkName
}
<
/span
>
<
/NavLink
>
)
}
}
\ No newline at end of file
.history/src/common/Nav/index_20190418121111.js
0 → 100644
View file @
9fc1818d
import
React
,
{
Component
}
from
'react'
;
import
NavLink
from
'./NavLink'
;
import
'./index.scss'
;
export
default
class
Nav
extends
Component
{
render
()
{
return
(
<
div
>
<
div
style
=
{{
height
:
'50px'
}}
><
/div
>
<
div
className
=
"root"
>
<
NavLink
pathUrl
=
"/"
exact
icoName
=
"iconfont iconshouye"
active
=
{
"navOne"
}
linkName
=
"首页"
/>
<
NavLink
pathUrl
=
"/classify"
icoName
=
"iconfont iconiconfront-16"
active
=
{
"navTwo"
}
linkName
=
"分类"
/>
<
NavLink
pathUrl
=
"/study"
icoName
=
"iconfont iconxuexi"
active
=
{
"navThree"
}
linkName
=
"学习"
/>
<
NavLink
pathUrl
=
"/my"
icoName
=
"iconfont iconhome"
active
=
{
"navFour"
}
linkName
=
"我的"
/>
<
/div
>
<
/div
>
)
}
}
\ No newline at end of file
.history/src/common/Nav/index_20190418122307.scss
0 → 100644
View file @
9fc1818d
.root
{
height
:
50px
;
position
:
fixed
;
z-index
:
50
;
bottom
:
0
;
left
:
0
;
width
:
100%
;
display
:
flex
;
background
:
#fff
;
border-top
:
1px
solid
#ddd
;
}
.navOne
,
.navTwo
,
.navThree
,
.navFour
,
.navFive
{
color
:
#09f
;
&
:hover
,
&
:active
{
color
:
#09f
;
}
}
.navTwo
{
color
:
#09f
;
&
:hover
,
&
:active
{
color
:
#09f
;
}
.iconiconfront-16
{
content
:
"\E695"
;
}
}
.iconfont
{
font-size
:
24px
!
important
;
margin-bottom
:
4px
;
}
\ No newline at end of file
.history/src/common/Nav/index_20190418122326.scss
0 → 100644
View file @
9fc1818d
.root
{
height
:
50px
;
position
:
fixed
;
z-index
:
50
;
bottom
:
0
;
left
:
0
;
width
:
100%
;
display
:
flex
;
background
:
#fff
;
border-top
:
1px
solid
#ddd
;
}
.navOne
,
.navTwo
,
.navThree
,
.navFour
,
.navFive
{
color
:
#09f
;
&
:hover
,
&
:active
{
color
:
#09f
;
}
}
.navTwo
{
color
:
#09f
;
&
:hover
,
&
:active
{
color
:
#09f
;
}
.iconiconfront-16
{
content
:
"\E695"
;
}
}
.iconfont
{
font-size
:
24px
!
important
;
margin-bottom
:
4px
;
}
\ No newline at end of file
.history/src/common/Nav/index_20190418122357.js
0 → 100644
View file @
9fc1818d
import
React
,
{
Component
}
from
'react'
;
import
NavLink
from
'./NavLink'
;
import
'./index.scss'
;
export
default
class
Nav
extends
Component
{
render
()
{
return
(
<
div
>
<
div
style
=
{{
height
:
'50px'
}}
><
/div
>
<
div
className
=
"root"
>
<
NavLink
pathUrl
=
"/"
exact
icoName
=
"iconfont iconshouye"
active
=
{
"navOne"
}
linkName
=
"首页"
/>
<
NavLink
pathUrl
=
"/classify"
icoName
=
"iconfont iconfenlei"
active
=
{
"navTwo"
}
linkName
=
"分类"
/>
<
NavLink
pathUrl
=
"/study"
icoName
=
"iconfont iconxuexi"
active
=
{
"navThree"
}
linkName
=
"学习"
/>
<
NavLink
pathUrl
=
"/my"
icoName
=
"iconfont iconhome"
active
=
{
"navFour"
}
linkName
=
"我的"
/>
<
/div
>
<
/div
>
)
}
}
\ No newline at end of file
.history/src/common/Nav/index_20190418122421.js
0 → 100644
View file @
9fc1818d
import
React
,
{
Component
}
from
'react'
;
import
NavLink
from
'./NavLink'
;
import
'./index.scss'
;
export
default
class
Nav
extends
Component
{
render
()
{
return
(
<
div
>
<
div
style
=
{{
height
:
'50px'
}}
><
/div
>
<
div
className
=
"root"
>
<
NavLink
pathUrl
=
"/"
exact
icoName
=
"iconfont iconshouye"
active
=
{
"navOne"
}
linkName
=
"首页"
/>
<
NavLink
pathUrl
=
"/classify"
icoName
=
"iconfont iconiconfront-16"
active
=
{
"navTwo"
}
linkName
=
"分类"
/>
<
NavLink
pathUrl
=
"/study"
icoName
=
"iconfont iconxuexi"
active
=
{
"navThree"
}
linkName
=
"学习"
/>
<
NavLink
pathUrl
=
"/my"
icoName
=
"iconfont iconhome"
active
=
{
"navFour"
}
linkName
=
"我的"
/>
<
/div
>
<
/div
>
)
}
}
\ No newline at end of file
.history/src/common/Nav/index_20190418122435.scss
0 → 100644
View file @
9fc1818d
.root
{
height
:
50px
;
position
:
fixed
;
z-index
:
50
;
bottom
:
0
;
left
:
0
;
width
:
100%
;
display
:
flex
;
background
:
#fff
;
border-top
:
1px
solid
#ddd
;
}
.navOne
,
.navTwo
,
.navThree
,
.navFour
,
.navFive
{
color
:
#09f
;
&
:hover
,
&
:active
{
color
:
#09f
;
}
}
.navTwo
{
color
:
#09f
;
&
:hover
,
&
:active
{
color
:
#09f
;
}
.iconiconfront-16
{
content
:
"\E695"
;
}
}
.iconfont
{
font-size
:
24px
!
important
;
margin-bottom
:
4px
;
}
\ No newline at end of file
.history/src/common/Nav/index_20190418122454.scss
0 → 100644
View file @
9fc1818d
.root
{
height
:
50px
;
position
:
fixed
;
z-index
:
50
;
bottom
:
0
;
left
:
0
;
width
:
100%
;
display
:
flex
;
background
:
#fff
;
border-top
:
1px
solid
#ddd
;
}
.navOne
,
.navTwo
,
.navThree
,
.navFour
,
.navFive
{
color
:
#09f
;
&
:hover
,
&
:active
{
color
:
#09f
;
}
}
.navTwo
{
color
:
#09f
;
&
:hover
,
&
:active
{
color
:
#09f
;
}
.
iconiconfront-16
:
:
before
{
content
:
"\E695"
;
}
}
.iconfont
{
font-size
:
24px
!
important
;
margin-bottom
:
4px
;
}
\ No newline at end of file
src/common/Nav/index.js
View file @
9fc1818d
...
...
@@ -11,7 +11,7 @@ export default class Nav extends Component {
<
NavLink
pathUrl
=
"/"
exact
icoName
=
{
"iconfont iconshouye"
}
icoName
=
"iconfont iconshouye"
active
=
{
"navOne"
}
linkName
=
"首页"
/>
...
...
src/common/Nav/index.scss
View file @
9fc1818d
...
...
@@ -16,6 +16,15 @@
color
:
#09f
;
}
}
.navTwo
{
color
:
#09f
;
&
:hover
,
&
:active
{
color
:
#09f
;
}
.
iconiconfront-16
:
:
before
{
content
:
"\E695"
;
}
}
.iconfont
{
font-size
:
24px
!
important
;
...
...
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