javascript - Codepen 在 HTML 上工作而不在 ASP.NET 上工作

标签 javascript jquery html css asp.net

我在将一个元素从 codepen 集成到 ASP.NET 时遇到了问题。当我下载该元素并在 atom 上对其进行测试时,它运行良好,但是当我尝试将其传输到 ASP.NET(复制粘贴)时,它停止工作,它只是在登录/注册之间切换而不移动。我是 ASP.NET 的新手,所以也许我遗漏了一些东西......它在双重 <html> 上发出绿色警告和 <body>标签也许问题就在那里,我只是不知道如何解决它。欢迎任何帮助,在此先感谢。

原始代码笔:Codepen Link

注意:我所做的唯一编辑是在非闭合 <> 元素上添加/因为 ASP.NET 告诉我这样做。

var $loginMsg = $('.loginMsg'),
  $login = $('.login'),
  $signupMsg = $('.signupMsg'),
  $signup = $('.signup'),
  $frontbox = $('.frontbox');

$('#switch1').on('click', function () {
    $loginMsg.toggleClass("visibility");
    $frontbox.addClass("moving");
    $signupMsg.toggleClass("visibility");

    $signup.toggleClass('hide');
    $login.toggleClass('hide');
})

$('#switch2').on('click', function () {
    $loginMsg.toggleClass("visibility");
    $frontbox.removeClass("moving");
    $signupMsg.toggleClass("visibility");

    $signup.toggleClass('hide');
    $login.toggleClass('hide');
})

setTimeout(function () {
    $('#switch1').click()
}, 1000)

setTimeout(function () {
    $('#switch2').click()
}, 3000)
body{
  background: linear-gradient(141deg, #0fb8ad 0%, #1fc8db 51%, #2cb5e8 75%);
  font-family: 'Roboto', sans-serif;
}

.container{
  /*border:1px solid white;*/
  width: 600px;
  height: 350px;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
}
.backbox{
  background-color: #404040;
  width: 100%;
  height: 80%;
  position: absolute;
  transform: translate(0,-50%);
  top:50%;
  display: inline-flex;
  border-radius: 15px;
}

.frontbox{
  background-color: white;
  border-radius: 20px;
  height: 100%;
  width: 50%;
  z-index: 10;
  position: absolute;
  right:0;
  margin-right: 3%;
  margin-left: 3%;
  transition: right .8s ease-in-out;
}

.moving{
  right:45%;
}

.loginMsg, .signupMsg{
  width: 50%;
  height: 100%;
  font-size: 15px;
  box-sizing: border-box;
}

.loginMsg .title,
.signupMsg .title{
  font-weight: 300;
  font-size: 23px;
}

.loginMsg p,
.signupMsg p {
  font-weight: 100;
}

.textcontent{
  color:white;
  margin-top:65px;
  margin-left: 12%;
}

.loginMsg button,
.signupMsg button {
  background-color: #404040;
  border: 2px solid white;
  border-radius: 10px;
  color:white;
  font-size: 12px;
  box-sizing: content-box;
  font-weight: 300;
  padding:10px;
  margin-top: 20px;
}

/* front box content*/
.login, .signup{
  padding: 20px;
  text-align: center;
}

.login h2,
.signup h2 {
  color: #35B729;
  font-size:22px;
}

.inputbox{
  margin-top:30px;
}
.login input,
.signup input {
  display: block;
  width: 100%;
  height: 40px;
  background-color: #f2f2f2;
  border: none;
  margin-bottom:20px;
  font-size: 12px;
}

.login button,
.signup button{
  background-color: #35B729;
  border: none;
  color:white;
  font-size: 12px;
  font-weight: 300;
  box-sizing: content-box;
  padding:10px;
  border-radius: 10px;
  width: 60px;
  position: absolute;
  right:30px;
  bottom: 30px;
  cursor: pointer;
}

/* Fade In & Out*/
.login p {
  cursor: pointer;
  color:#404040;
  font-size:15px;
}

.loginMsg, .signupMsg{
  /*opacity: 1;*/
  transition: opacity .8s ease-in-out;
}

.visibility{
  opacity: 0;
}

.hide{
  display: none;
}
<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Login</title>
     <meta name="viewport" content="width=device-width, initial-scale=1"/>
     <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
     <link href='https://fonts.googleapis.com/css?family=Roboto:400,300,100' rel='stylesheet' type='text/css'/>
    
     <link href="stylelogin.css" rel="stylesheet" />
  

</head>

<body>
  <body>
    <form id="form1" runat="server">
            <div class="container">
    <div class="backbox">
      <div class="loginMsg">
        <div class="textcontent">
          <p class="title">Don't have an account?</p>
          <p>Sign up to save all your graph.</p>
          <button id="switch1">Sign Up</button>
        </div>
      </div>
      <div class="signupMsg visibility">
        <div class="textcontent">
          <p class="title">Have an account?</p>
          <p>Log in to see all your collection.</p>
          <button id="switch2">LOG IN</button>
        </div>
      </div>
    </div>
    <!-- backbox -->

    <div class="frontbox">
      <div class="login">
        <h2>LOG IN</h2>
        <div class="inputbox">
          <input type="text" name="email" placeholder="  EMAIL"/>
          <input type="password" name="password" placeholder="  PASSWORD"/>
        </div>
        <p>FORGET PASSWORD?</p>
        <button>LOG IN</button>
      </div>

      <div class="signup hide">
        <h2>SIGN UP</h2>
        <div class="inputbox">
          <input type="text" name="fullname" placeholder="  FULLNAME"/>
          <input type="text" name="email" placeholder="  EMAIL"/>
          <input type="password" name="password" placeholder="  PASSWORD"/>
        </div>
        <button>SIGN UP</button>
      </div>

    </div>
    <!-- frontbox -->
  </div>
    </form>
</body>

</html>
  

    <script src="jslogin.js"></script>
</body>
</html>

最佳答案

尝试将 e.preventDefault 添加到您的函数中,以避免 jQuery 触发它不需要做的事情。

$('#switch1').on('click', function (e) {
   e.preventDefault();
   $loginMsg.toggleClass("visibility");
   $frontbox.addClass("moving");
   $signupMsg.toggleClass("visibility");

   $signup.toggleClass('hide');
   $login.toggleClass('hide');
})

$('#switch2').on('click', function (e) {
   e.preventDefault();
   $loginMsg.toggleClass("visibility");
   $frontbox.removeClass("moving");
   $signupMsg.toggleClass("visibility");

   $signup.toggleClass('hide');
   $login.toggleClass('hide');
})

我在这个 jsFiddle 中得到了这个工作,所以请检查一下,在您的代码上尝试一下,让我们知道它是否有效。

希望对你有帮助。

关于javascript - Codepen 在 HTML 上工作而不在 ASP.NET 上工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43538195/

相关文章:

javascript - 在 Typo3 原始 HTML 内容中包含 javascript

jquery - 可重复使用的远程模态 Rails

javascript - 光标离开 Canvas 后,如何使用 MouseLeave 将光标改回原来的状态?

html - 选择在模板页面上使用 # vs class

javascript - Jquery 追加元素然后改变 css?

Javascript将居中文本放在页面底部

javascript - 用 html 内容替换 ChildNode 值

html - Rails 助手 : Add a line break to the end of a content_tag within helper method

javascript - 如何使用 Bootstrap 3 在模态内设置样式

javascript - Jquery 检查字母数字字符