new fullpage('#fullpage', {
anchors: ['firstPage', 'secondPage', 'thirdPage'],
onLeave: function(origin, destination, direction){
var loadedSection = this,
header = document.querySelector("header.header");
//using index если прозрачный = фон
if(origin.index == 0 and direction =='down'){
header.style.opacity = 0;
}
else if(origin.index == 1 and direction =='up'){
header.style.opacity = 1;
}
//using anchorLink если прозрачный = цвет фона
if(origin.anchor == 'firstPage' and direction =='down'){
header.style.backgroundColor = 'transparent';
}
else if(origin.anchor == 'secondPage' and direction === 'up'){
header.style.backgroundColor = 'white';
}
}
});
<?
$aMenuLinks = Array(
Array(
"page"=>"Каталог курсов",
"link"=>"index.php",
"foo" => Array(),
"bar" => Array(),
"dollar"=> ""
),
Array(
"page"=>"Мои курсы",
"link"=>"mycourses.php",
"foo"=> Array(),
"bar" =>Array(),
"dollar" =>""
),
);
echo json_encode($aMenuLinks);
?>
<div id="app2">
<div v-for="inform in info">
<a v-bind:href="inform.link">{{inform.page}}</a>
</div>
var app2 = new Vue ({
el: '#app2',
data() {
return {
info: null
};
},
mounted() {
axios
.get('test.php')
.then(response => (this.info = response.data));
}
})
var reports = new Array();
var Report = function(date){
this.date = date;
this.createDate = Date.now();
this.id = reports.filter(f=>(f.getFullYear() == date.getFullYear() && f.getMonth() === date.getMonth())).length + 1;
}
let lastReportNumber = reports.filter(f=>(f.getFullYear() == 2019 && f.getMonth() === months.indexOf("Январь"))).length; // последний номер заявки и соответственно их число в месяце (если первый id = 1)
reports = reports.filter(f=>!(f.getFullYear() == 2019 && f.getMonth() === months.indexOf("Январь") && f.id === lastReportNumber)); // Удалить последнюю в январе
reports.push(new Report(Date.now()));//Положить новую
<input type="submit">
то можно так.<form>
<input type="text" class="checkme" value="zagol">
<!-- Другие элементы формы -->
<input type="submit">
</form>
<form>
<input type="text" class="checkme" value="users">
<!-- Другие элементы формы -->
<input type="submit">
</form>
function check(){
if ($(this).val() !== '') $(this).parent().find('input[type="submit"]').removeAttr("disabled");
else $(this).parent().find('input[type="submit"]').attr('disabled', true);
}
$(".checkme").change(check);
<input type="text" class="checkme">
<button>#Загол</button>
<!-- Другие элементы -->
<input type="text" class="checkme">
<button>#Юзеры</button>
function check(){
if ($(this).val() !== '') $(this).next('button').removeAttr("disabled");
else $(this).next('button').attr('disabled', true);
}
$(".checkme").change(check);