bugfix js
This commit is contained in:
@@ -1 +1 @@
|
|||||||
{"01-08-2018":19,"02-08-2018":424,"20-08-2018":112,"21-08-2018":214,"22-08-2018":440,"24-08-2018":273,"27-08-2018":358,"28-08-2018":82,"29-08-2018":104}
|
{"01-08-2018":19,"02-08-2018":424,"20-08-2018":112,"21-08-2018":214,"22-08-2018":440,"24-08-2018":273,"27-08-2018":358,"28-08-2018":82,"29-08-2018":155}
|
||||||
@@ -1 +1 @@
|
|||||||
{"08-2018":2026}
|
{"08-2018":2077}
|
||||||
@@ -1 +1 @@
|
|||||||
{"\/":979,"\/projets":99,"\/news":197,"\/a-propros":66,"\/projets-n-1":1,"\/projets\/projets-n-1":602,"\/projets\/projet-n-2":54,"\/projets\/projets-n-2":5,"\/projets\/projets-n":23}
|
{"\/":1027,"\/projets":99,"\/news":198,"\/a-propros":66,"\/projets-n-1":1,"\/projets\/projets-n-1":603,"\/projets\/projet-n-2":55,"\/projets\/projets-n-2":5,"\/projets\/projets-n":23}
|
||||||
@@ -1 +1 @@
|
|||||||
{"4b84b15bff6ee5796152495a230e45e3d7e947d9":1535549030}
|
{"4b84b15bff6ee5796152495a230e45e3d7e947d9":1535552759}
|
||||||
File diff suppressed because one or more lines are too long
+1
-1
File diff suppressed because one or more lines are too long
+43
-35
@@ -1,39 +1,30 @@
|
|||||||
function hovercat() {
|
// function hovercat() {
|
||||||
var $work = $('.navbar > ul > li:nth-child(1)');
|
|
||||||
var $workafter = $('.navbar > ul > li:nth-child(1)::after');
|
|
||||||
var $cat = $('.navbar > ul.tags');
|
|
||||||
|
|
||||||
$work.hover(
|
|
||||||
function() {
|
|
||||||
$( this ).addClass( "hover" );
|
|
||||||
$(this).parents().find('.tags').addClass("visible");
|
|
||||||
}, function() {
|
|
||||||
$( this ).removeClass( "hover" );
|
|
||||||
$(this).parents().find('.tags').removeClass("visible");
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
$cat.hover(
|
|
||||||
function() {
|
|
||||||
$( this ).addClass( "visible" );
|
|
||||||
$(this).parents().find($work).addClass('hover');
|
|
||||||
}, function() {
|
|
||||||
$( this ).removeClass( "visible" );
|
|
||||||
$(this).parents().find($work).removeClass('hover');
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// function active() {
|
|
||||||
// var $work = $('.navbar > ul > li:nth-child(1)');
|
// var $work = $('.navbar > ul > li:nth-child(1)');
|
||||||
|
// var $workafter = $('.navbar > ul > li:nth-child(1)::after');
|
||||||
|
// var $cat = $('.navbar > ul.tags');
|
||||||
//
|
//
|
||||||
// $work.click(function(event) {
|
// $work.hover(
|
||||||
// $(this).parents().find('.tags').toggleClass("active");
|
// function() {
|
||||||
// });
|
// $( this ).addClass( "hover" );
|
||||||
|
// $(this).parents().find('.tags').addClass("visible");
|
||||||
|
// }, function() {
|
||||||
|
// $( this ).removeClass( "hover" );
|
||||||
|
// $(this).parents().find('.tags').removeClass("visible");
|
||||||
|
// }
|
||||||
|
// );
|
||||||
|
//
|
||||||
|
// $cat.hover(
|
||||||
|
// function() {
|
||||||
|
// $( this ).addClass( "visible" );
|
||||||
|
// $(this).parents().find($work).addClass('hover');
|
||||||
|
// }, function() {
|
||||||
|
// $( this ).removeClass( "visible" );
|
||||||
|
// $(this).parents().find($work).removeClass('hover');
|
||||||
|
// }
|
||||||
|
// );
|
||||||
// }
|
// }
|
||||||
|
|
||||||
function catprojets() {
|
function catprojets() {
|
||||||
|
|
||||||
$(window).load(function () {
|
$(window).load(function () {
|
||||||
var $content = $('.content');
|
var $content = $('.content');
|
||||||
var $txt = $('#items .content .txt');
|
var $txt = $('#items .content .txt');
|
||||||
@@ -47,12 +38,29 @@ function catprojets() {
|
|||||||
"height" : $Htxt + "px"
|
"height" : $Htxt + "px"
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function removeAct(){
|
||||||
|
var $cat = $('.navbar > ul.tags');
|
||||||
|
var $work = $('.navbar > ul:first-child > li:first-child a');
|
||||||
|
var $start = $("body #start");
|
||||||
|
|
||||||
|
$work.click(function(event) {
|
||||||
|
event.preventDefault();
|
||||||
|
$(this).parents('.navbar').find('.tags').toggleClass('visible');
|
||||||
|
$(this).parents('.navbar').find(' ul > li:first-child').toggleClass('hover');
|
||||||
|
});
|
||||||
|
|
||||||
|
$start.click(function(event) {
|
||||||
|
$(this).parents('#top').find('.tags').removeClass('visible');
|
||||||
|
$(this).parents('#top').find(' ul > li:first-child').removeClass('hover');
|
||||||
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
jQuery(document).ready(function($) {
|
|
||||||
// active();
|
|
||||||
hovercat();
|
|
||||||
catprojets();
|
|
||||||
|
|
||||||
|
jQuery(document).ready(function($) {
|
||||||
|
removeAct();
|
||||||
|
// hovercat();
|
||||||
|
catprojets();
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -21,6 +21,7 @@
|
|||||||
margin: auto 0;
|
margin: auto 0;
|
||||||
& > .tags{
|
& > .tags{
|
||||||
& > a {
|
& > a {
|
||||||
|
height: 30px!important;
|
||||||
li{
|
li{
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
@@ -59,9 +60,9 @@
|
|||||||
display: -ms-flexbox;
|
display: -ms-flexbox;
|
||||||
display: flex;
|
display: flex;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-right: 35px;
|
margin-right: 35px!important;
|
||||||
& > a{
|
& > a{
|
||||||
pointer-events: none;
|
// pointer-events: none;
|
||||||
}
|
}
|
||||||
&:after{
|
&:after{
|
||||||
content: " ";
|
content: " ";
|
||||||
@@ -100,7 +101,7 @@
|
|||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
li{
|
li{
|
||||||
height: 40px;
|
height: 40px;
|
||||||
margin-right: 20px;
|
margin-right: 20px!important;
|
||||||
-webkit-box-align: center;
|
-webkit-box-align: center;
|
||||||
-ms-flex-align: center;
|
-ms-flex-align: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -133,7 +134,7 @@
|
|||||||
height: 40px;
|
height: 40px;
|
||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
&:first-child{
|
&:first-child{
|
||||||
margin-top: 10px;
|
margin-top: 0px;
|
||||||
}
|
}
|
||||||
&:last-child{
|
&:last-child{
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
|||||||
Reference in New Issue
Block a user