 
      
    JavaScript
    8
    Вклад в тег
    
      
      
    
  
  
 
  
   
  
  <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        .one{
            width: 400px;
            height: 400px;
            background: green;
        }
        .list{
            width: 100px;
            height: 100px;
            background: #00B7FF;
        }
    </style>
</head>
<body>
<div class="one">
    <div class="list"></div>
</div>
<script>
    let list =document.getElementsByClassName('list')[0];
    setTimeout(()=>list.parentElement.style.background="red",2000)
    
</script>
</body>
</html> 
  
   
  
  let mape=true;
window.onscroll = function showHeader(){
  let map = document.getElementById("map");
  if(window.screen.width>=992){
    if(window.pageYOffset > 130) {
if(mape===true){
mape=false
map.innerHTML = '<iframe src="Тут будет ссылка на карту" width="600" height="450" frameborder="0" style="border:0;" allowfullscreen=""></iframe>'
}
      
    
  }
}