为什么我未指定样式元素时在代码中添加了样式元素

时间:2019-10-10 01:41:59

标签: html

我遇到一个问题,即在默认浏览器上我的图像无法以隐身模式显示时,它可以正常显示。当我看一下代码时,这就是它所显示的。 enter image description here

但是,在我的html和js中,我从未实现任何可操纵图像可见性的方法。有人可以解释一下这是怎么发生的,我应该怎么做才能防止它发生?

这是html

<section class="app-flow position-relative" id="app_flow">

   <div class="col-md-5 position-relative flowsub-1-bg">
    <img class="img-fluid animated wow slideInLeft phone-eg" src="{{ asset('img/landing/flow1-1.png') }}" title="flow1-1" alt="flow1-1">
    <img class="img-fluid position-absolute d-none d-md-block" src="{{ asset('img/landing/flow1-2.png') }}" title="flow1-2" alt="flow1-2">
   </div>
  </div>
  <div class="flow-sub d-flex flex-column flex-md-row justify-content-between">
   <div class="d-flex flex-column col-md-5 app-flow-instruct">
    <h4>Display 1</h4>
    <p>Initial stage of setting up</p>
    <div class="appflow-icon">
     <img class="img-fluid" src="{{ asset('img/landing/flow1-icon.png') }}" title="flow1-icon" alt="flow1-icon">
    </div>
   </div>
   <div class="col-md-5 position-relative flowsub-2-bg">
    <img class="img-fluid animated wow slideInRight phone-eg" src="{{ asset('img/landing/flow2-1.png') }}" title="flow2-1" alt="flow2-1">
    <img class="img-fluid position-absolute wow slideInRight d-none d-md-block" src="{{ asset('img/landing/flow2-2.png') }}" title="flow2-2" alt="flow2-2">
    <img class="img-fluid position-absolute wow slideInRight" src="{{ asset('img/landing/flow2-3.png') }}" title="flow2-3" alt="flow2-3">
   </div>
  </div>
  <div class="flow-sub d-flex flex-column flex-md-row justify-content-between">
   <div class="d-flex flex-column col-md-5 order-md-3 app-flow-instruct">
    <h4>Display 2</h4>
    <p>Phase 2 of initiation</p>
    <div class="appflow-icon">
     <img class="img-fluid" src="{{ asset('img/landing/flow2-icon.png') }}" title="flowflow2-icon" alt="flow2-icon">
    </div>
   </div>
  </div>
 </div>
</section>

和我的js

$(function () {
  new WOW().init();

  $('video').on('click touch', function () {
    this.paused ? this.play() : this.pause();
  });

  $('input').focusout(function (e) {
    /*check if val length is empty, or if type is email and does not contain @ and .*/
    if ($(this).val().length < 1 || ($(this).attr('type') == "email" && !/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test($(this).val()))) {

      $(this).parent().find('.message').show();
      $(this).parent().addClass('is-invalid');

    } else {
      /*remove the is-invalid class and message error if the input is not empty*/
      $(this).parent().find('.message').hide();
      $(this).parent().removeClass('is-invalid');
    }
  });
  $('input').bind('keypress', function (e) {
    $(this).parent().removeClass('is-invalid');
  });
  $('.modal-open').click(function (e) {
    e.preventDefault();
    $('.modal').addClass('fadeOutUp');
  });
});

不确定内联样式在哪里触发

1 个答案:

答案 0 :(得分:0)

由于这篇文章的信息非常有限,因此我建议您研究一下代码并查看以下任何一项是否适用。

这些专门与 Chrome隐身模式和隐藏内容

相关
  1. How to enable Google Chrome Incognito Mode detection blocking
  

网站可以判断用户是否以隐身模式浏览,因为它阻止了对“ FileSystem” API的访问。现在,Chrome 74通过在计算机内存中创建临时虚拟文件系统,使用户仿冒网站进行跟踪,从而使浏览器看起来好像不在隐身模式下

  1. Disabling Chrome cache for website development
  

Chrome浏览器具有永久性缓存,无法看到更新后的网站外观(CSS修改)

  1. Ensure you aren't detecting private browsing & have custom CSS

localStorage.test = 2;

  1. Failed to load resource under Chrome
  

以隐身模式启动Chrome,禁用扩展名(ctrl + shift + n),然后查看您的页面是否可以正常工作。

祝你好运!