Uploaded the files.
This commit is contained in:
commit
37661b3ee7
374 changed files with 90632 additions and 0 deletions
118
admin/assets/demo/demo.css
Normal file
118
admin/assets/demo/demo.css
Normal file
|
@ -0,0 +1,118 @@
|
|||
.tim-typo {
|
||||
padding-left: 25%;
|
||||
margin-bottom: 40px;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.tim-typo .tim-note {
|
||||
bottom: 5px;
|
||||
color: #c0c1c2;
|
||||
display: block;
|
||||
font-weight: 400;
|
||||
font-size: 13px;
|
||||
line-height: 15px;
|
||||
left: 0;
|
||||
margin-left: 20px;
|
||||
position: absolute;
|
||||
width: 260px;
|
||||
}
|
||||
|
||||
/* offline-doc */
|
||||
|
||||
.offline-doc .navbar.navbar-transparent {
|
||||
padding-top: 25px;
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.offline-doc .navbar.navbar-transparent .navbar-minimize {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.offline-doc .navbar.navbar-transparent .navbar-brand,
|
||||
.offline-doc .navbar.navbar-transparent .collapse .navbar-nav .nav-link {
|
||||
color: #FFF;
|
||||
}
|
||||
|
||||
.offline-doc .footer {
|
||||
z-index: 3 !important;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
background: transparent;
|
||||
bottom: 0;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.offline-doc .page-header .content-center {
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.offline-doc .brand .title {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.offline-doc .footer {
|
||||
z-index: 3 !important;
|
||||
}
|
||||
|
||||
.offline-doc .page-header .container {
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.offline-doc .page-header:after {
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
content: "";
|
||||
display: block;
|
||||
height: 100%;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
@media all and (max-width: 991px) {
|
||||
.offline-doc .navbar .navbar-collapse.collapse,
|
||||
.offline-doc .navbar .navbar-collapse.collapse.in,
|
||||
.offline-doc .navbar .navbar-collapse.collapsing {
|
||||
display: block !important;
|
||||
}
|
||||
.nav-open .offline-doc .navbar-wrapper,
|
||||
.nav-open .offline-doc .navbar-toggler {
|
||||
-webkit-transform: translate3d(-260px, 0, 0);
|
||||
-moz-transform: translate3d(-260px, 0, 0);
|
||||
-o-transform: translate3d(-260px, 0, 0);
|
||||
-ms-transform: translate3d(-260px, 0, 0);
|
||||
transform: translate3d(-260px, 0, 0);
|
||||
}
|
||||
.offline-doc .navbar-wrapper,
|
||||
.offline-doc .navbar-toggler {
|
||||
-webkit-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
|
||||
-moz-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
|
||||
-o-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
|
||||
-ms-transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
|
||||
transition: all 0.33s cubic-bezier(0.685, 0.0473, 0.346, 1);
|
||||
}
|
||||
.offline-doc .navbar .collapse .navbar-nav .nav-item .nav-link {
|
||||
margin-left: 15px;
|
||||
color: #8b92a9 !important;
|
||||
}
|
||||
}
|
||||
|
||||
#map {
|
||||
z-index: 2;
|
||||
height: calc(100vh - 70px);
|
||||
margin-top: 70px;
|
||||
}
|
||||
|
||||
.bd-docs.dark-edition .bd-example {
|
||||
background-color: #1a2035;
|
||||
border: 0;
|
||||
border-radius: 10px;
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
}
|
||||
|
||||
.bd-docs.dark-edition {
|
||||
background-color: #fff;
|
||||
}
|
175
admin/assets/demo/demo.js
Normal file
175
admin/assets/demo/demo.js
Normal file
|
@ -0,0 +1,175 @@
|
|||
demo = {
|
||||
initDocumentationCharts: function() {
|
||||
if ($('#dailySalesChart').length != 0 && $('#websiteViewsChart').length != 0) {
|
||||
/* ----------========== Daily Sales Chart initialization For Documentation ==========---------- */
|
||||
|
||||
dataDailySalesChart = {
|
||||
labels: ['M', 'T', 'W', 'T', 'F', 'S', 'S'],
|
||||
series: [
|
||||
[12, 17, 7, 17, 23, 18, 38]
|
||||
]
|
||||
};
|
||||
|
||||
optionsDailySalesChart = {
|
||||
lineSmooth: Chartist.Interpolation.cardinal({
|
||||
tension: 0
|
||||
}),
|
||||
low: 0,
|
||||
high: 50, // creative tim: we recommend you to set the high sa the biggest value + something for a better look
|
||||
chartPadding: {
|
||||
top: 0,
|
||||
right: 0,
|
||||
bottom: 0,
|
||||
left: 0
|
||||
},
|
||||
}
|
||||
|
||||
var dailySalesChart = new Chartist.Line('#dailySalesChart', dataDailySalesChart, optionsDailySalesChart);
|
||||
|
||||
var animationHeaderChart = new Chartist.Line('#websiteViewsChart', dataDailySalesChart, optionsDailySalesChart);
|
||||
}
|
||||
},
|
||||
|
||||
initGoogleMaps: function() {
|
||||
var myLatlng = new google.maps.LatLng(40.748817, -73.985428);
|
||||
var mapOptions = {
|
||||
zoom: 13,
|
||||
center: myLatlng,
|
||||
scrollwheel: false, //we disable de scroll over the map, it is a really annoing when you scroll through page
|
||||
styles: [{
|
||||
"elementType": "geometry",
|
||||
"stylers": [{
|
||||
"color": "#f5f5f5"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"elementType": "labels.icon",
|
||||
"stylers": [{
|
||||
"visibility": "off"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"elementType": "labels.text.fill",
|
||||
"stylers": [{
|
||||
"color": "#616161"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"elementType": "labels.text.stroke",
|
||||
"stylers": [{
|
||||
"color": "#f5f5f5"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"featureType": "administrative.land_parcel",
|
||||
"elementType": "labels.text.fill",
|
||||
"stylers": [{
|
||||
"color": "#bdbdbd"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"featureType": "poi",
|
||||
"elementType": "geometry",
|
||||
"stylers": [{
|
||||
"color": "#eeeeee"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"featureType": "poi",
|
||||
"elementType": "labels.text.fill",
|
||||
"stylers": [{
|
||||
"color": "#757575"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"featureType": "poi.park",
|
||||
"elementType": "geometry",
|
||||
"stylers": [{
|
||||
"color": "#e5e5e5"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"featureType": "poi.park",
|
||||
"elementType": "labels.text.fill",
|
||||
"stylers": [{
|
||||
"color": "#9e9e9e"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"featureType": "road",
|
||||
"elementType": "geometry",
|
||||
"stylers": [{
|
||||
"color": "#ffffff"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"featureType": "road.arterial",
|
||||
"elementType": "labels.text.fill",
|
||||
"stylers": [{
|
||||
"color": "#757575"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"featureType": "road.highway",
|
||||
"elementType": "geometry",
|
||||
"stylers": [{
|
||||
"color": "#dadada"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"featureType": "road.highway",
|
||||
"elementType": "labels.text.fill",
|
||||
"stylers": [{
|
||||
"color": "#616161"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"featureType": "road.local",
|
||||
"elementType": "labels.text.fill",
|
||||
"stylers": [{
|
||||
"color": "#9e9e9e"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"featureType": "transit.line",
|
||||
"elementType": "geometry",
|
||||
"stylers": [{
|
||||
"color": "#e5e5e5"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"featureType": "transit.station",
|
||||
"elementType": "geometry",
|
||||
"stylers": [{
|
||||
"color": "#eeeeee"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"featureType": "water",
|
||||
"elementType": "geometry",
|
||||
"stylers": [{
|
||||
"color": "#c9c9c9"
|
||||
}]
|
||||
},
|
||||
{
|
||||
"featureType": "water",
|
||||
"elementType": "labels.text.fill",
|
||||
"stylers": [{
|
||||
"color": "#9e9e9e"
|
||||
}]
|
||||
}
|
||||
]
|
||||
|
||||
};
|
||||
var map = new google.maps.Map(document.getElementById("map"), mapOptions);
|
||||
|
||||
var marker = new google.maps.Marker({
|
||||
position: myLatlng,
|
||||
title: "Hello World!"
|
||||
});
|
||||
|
||||
// To add the marker to the map, call setMap();
|
||||
marker.setMap(map);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue