Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tl_estate
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hujun
tl_estate
Commits
d4b4031e
Commit
d4b4031e
authored
Dec 13, 2017
by
刘丹
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qianduan
parent
714a4ef9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
28 deletions
+14
-28
diagram_list.html
application/index/view/member/diagram_list.html
+2
-1
home.css
public/resource/css/home.css
+7
-0
public.css
public/resource/css/public.css
+3
-7
home.js
public/resource/js/home.js
+2
-20
No files found.
application/index/view/member/diagram_list.html
View file @
d4b4031e
...
...
@@ -180,8 +180,9 @@
</div>
<!-- /.modal-content -->
</div>
<!-- /.modal -->
</div>
<!-- /#新增广告模态框 -->
<div
class=
"modal fade"
id=
"modal-add-do"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"myModalLabel"
aria-hidden=
"true"
>
<div
class=
"modal fade"
id=
"modal-add-do"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"myModalLabel"
aria-hidden=
"true"
>
<div
class=
"modal-dialog"
>
<div
class=
"modal-content"
>
<div
class=
"modal-header"
>
...
...
public/resource/css/home.css
View file @
d4b4031e
...
...
@@ -73,4 +73,10 @@
width
:
250px
;
height
:
60px
;
margin
:
0
auto
;
}
body
{
padding-right
:
0
!important
;
}
.modal
{
padding-right
:
0
!important
;
}
\ No newline at end of file
public/resource/css/public.css
View file @
d4b4031e
body
{
width
:
1335px
;
padding
:
0
;
margin
:
0
;
margin
:
0
auto
;
background-color
:
#F2F2F2
;
list-style
:
none
padding-right
:
0px
!important
;
}
a
:hover
{
text-decoration
:
none
;
...
...
@@ -49,10 +49,6 @@ body {
position
:
relative
;
overflow-x
:
hidden
;
}
body
,
html
{
height
:
100%
;
}
.nav
.open
>
a
{
background-color
:
transparent
;
}
...
...
@@ -70,7 +66,7 @@ html {
-o-transition
:
all
0.5s
ease
;
-webkit-transition
:
all
0.5s
ease
;
padding-left
:
0
;
height
:
97%
;
height
:
770px
;
transition
:
all
0.5s
ease
;
}
#wrapper
.toggled
{
...
...
@@ -96,7 +92,7 @@ html {
display
:
block
;
}
#page-content-wrapper
{
width
:
10
1
%
;
width
:
10
0
%
;
}
.navbar
{
border
:
none
;
...
...
public/resource/js/home.js
View file @
d4b4031e
...
...
@@ -4,33 +4,15 @@
define
([
'css!style/home.css'
,
'bootstrapJs'
],
function
()
{
var
home
=
{
urls
:
''
,
isClosed
:
false
,
init
:
function
()
{
//初始化dot
home
.
event
();
},
event
:
function
()
{
$
(
'.hamburger'
).
click
(
function
()
{
home
.
hamburger_cross
();
});
$
(
'[data-toggle="offcanvas"]'
).
click
(
function
()
{
$
(
'#wrapper'
).
toggleClass
(
'toggled'
);
});
},
hamburger_cross
:
function
(){
if
(
home
.
isClosed
==
true
)
{
$
(
'.overlay'
).
hide
();
$
(
'.hamburger'
).
removeClass
(
'is-open'
);
$
(
'.hamburger'
).
addClass
(
'is-closed'
);
home
.
isClosed
=
false
;
}
else
{
$
(
'.overlay'
).
show
();
$
(
'.hamburger'
).
removeClass
(
'is-closed'
);
$
(
'.hamburger'
).
addClass
(
'is-open'
);
home
.
isClosed
=
true
;
}
}
}
return
home
;
});
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