“js comment savoir si l'élément touche la bordure” Réponses codées

js comment savoir si l'élément touche la bordure

$(function(){
    var $window = $(window),
        $header = $('.header'),
        $this   = $(this); // <-----here you can cache your selectors

    $window.on('scroll', function(){
       if($this.scrollTop() > 0){
           $header.addClass('shadow');
       }else{
           $header.removeClass('shadow');
       }
    }).scroll();
});
DevLorenzo

js comment savoir si l'élément touche la bordure

var update = function (modifier) {
    if (38 in keysDown) { // Player holding up
        hero.y -= hero.speed * modifier;
    }
    if (40 in keysDown) { // Player holding down
        hero.y += hero.speed * modifier;
    }
    if (37 in keysDown) { // Player holding left
        hero.x -= hero.speed * modifier;
    }
    if (39 in keysDown) { // Player holding right
        hero.x += hero.speed * modifier;
    }

    // Are they touching?
    if (
        hero.x <= (monster.x + 32)
        && monster.x <= (hero.x + 32)
        && hero.y <= (monster.y + 32)
        && monster.y <= (hero.y + 32)
    ) {
        ++monstersCaught;
        reset();
    }
    if(hero.x <= 0){
        hero.x = 0;
    }
    else if(isMaxWidth()){
        hero.x = canvas.width -32
    }
    if(hero.y <= 0){
        hero.y = 0;
    }
    else if(isMaxHeight()){
        hero.y = canvas.height -32
    }

};

var isMaxWidth = function(){
    return hero.x >= canvas.width - 32;
};

var isMaxHeight = function(){
    return hero.y >= canvas.height - 32;
};
DevLorenzo

js comment savoir si l'élément touche la bordure

.shadow{
    box-shadow: 0px 3px 5px #888888;
}
DevLorenzo

js comment savoir si l'élément touche la bordure

0 <= x < window.innerHeight
DevLorenzo

Réponses similaires à “js comment savoir si l'élément touche la bordure”

Questions similaires à “js comment savoir si l'élément touche la bordure”

Plus de réponses similaires à “js comment savoir si l'élément touche la bordure” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code