注册按钮不工作在我的Launchrock小部件

Sign-up button is not working in my Launchrock widget

本文关键字:Launchrock 小部 我的 按钮 工作 注册      更新时间:2023-09-26

我建立了一个登陆页面-> http://www.zentify.com/我使用了twitter bootstrap,整合了Launchrock小部件,并调整了一些css。现在它看起来像我想要的样子,但是提交按钮"Jetzt Unternehmen anmelden"不起作用。

有人明白为什么那个按钮没有指向任何地方吗?哪些代码片段对查看有帮助?

这是我的自定义csshttps://github.com/Boeru/Zentify-website/blob/master/css/custom.css

我在登录到Launchrock小部件编辑器时直接在高级代码编辑器中编辑小部件的CSS和html。

这是JS自带的Launchrock小部件(问题在于这里吗?)

The widget css in the Launchrock advanced code editor
window.lrignition.themesJS.customTheme = function() {
/* DO NOT MODIFY ABOVE THIS LINE UNLESS YOU KNOW WHAT YOU ARE DOING */
this.init.push(function() {
    /* Your code here to run on initialization */
});
// Uncomment to override default mode set behavior
/*
this.setMode = function( ignition, mode ) {
    var container = ignition.getContainer(); // jQuery
    if( mode === "main" ) {
        container.find( ".LR-content" ).removeClass( "LR-sharing-page" );
        container.find( ".LR-site-share" ).hide();
        container.find( ".LR-sign-up-container" ).show();
    } else if( mode === "postsignup" ) {
        container.find( ".LR-content" ).addClass( "LR-sharing-page" );
        container.find( ".LR-sign-up-container" ).hide();
        container.find( ".LR-site-share" ).show();
    }
};
*/
/* DO NOT MODIFY BELOW THIS LINE UNLESS YOU KNOW WHAT YOU ARE DOING */
  };
  window.lrignition.themesJS.customTheme.prototype = new ( window.lrignition.themesJS.clean || window.lrignition.themesJS.common )( "customTheme" );

小部件

的覆盖css
.LR-sign-up-submit{
style="background-color:#00FA9A;"
height: 100px;
    }

.myButton {
width: 98%;

    -moz-box-shadow:inset 0px 1px 0px 0px #00fa9a;
    -webkit-box-shadow:inset 0px 1px 0px 0px #00fa9a;
    box-shadow:inset 0px 1px 0px 0px #00fa9a;
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #00fa9a), color-stop(1, #00fa9a));
    background:-moz-linear-gradient(top, #00fa9a 5%, #00fa9a 100%);
    background:-webkit-linear-gradient(top, #00fa9a 5%, #00fa9a 100%);
    background:-o-linear-gradient(top, #00fa9a 5%, #00fa9a 100%);
    background:-ms-linear-gradient(top, #00fa9a 5%, #00fa9a 100%);
    background:linear-gradient(to bottom, #00fa9a 5%, #00fa9a 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00fa9a', endColorstr='#00fa9a',GradientType=0);
    background-color:#00fa9a;
    -moz-border-radius:7px;
    -webkit-border-radius:7px;
    border-radius:7px;
    border:1px solid #fafafa;
    display:inline-block;
   color: #333333;
    font-family:Trebuchet MS;
    font-size:17px;
    font-weight:bold;
    padding:11px 38.5px  ;
    margin:0px 3px 6px ;
    text-decoration:none;
    text-shadow:0px 1px 0px #00fa9a;
}
.myButton:hover {
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #33FF99), color-stop(1, #33FF99));
    background:-moz-linear-gradient(top, #33FF99 5%, #33FF99 100%);
    background:-webkit-linear-gradient(top, #33FF99 5%, #33FF99 100%);
    background:-o-linear-gradient(top, #33FF99 5%, #33FF99 100%);
    background:-ms-linear-gradient(top, #33FF99 5%, #33FF99 100%);
    background:linear-gradient(to bottom, #33FF99 5%, #33FF99 100%);

    background-color:#33FF99;
}
.myButton:active {
    position:relative;
    top:1px;
}

.LR-bg-img {
margin-top: 0px;
background-attachment: relative;
background-color: #222222;
background-image: url("img/classicBg.png");
background-position: center center;
background-size: cover;
content: "";
height: 700px;
left: 0;
margin: 0;
padding: 0;
position: relative;
top: 0;
width: 100%;
z-index: -1;
}

div.LR-box-container {
z-index: -1;
}

.LR-content {
margin-top: 75px;
color: #FFFFFF;
font-family: "Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
font-size: 14px;
font-weight: 300;
height: 600px;
min-height: 100%;
position: relative; 
z-index: 0;
display: block;
}
.cookie {
margin-top: 160px;
font-family: Cookie;
font-size: 6em
}

.neuehelvetica {
font-family: "Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
font-weight: 400;
margin-top: -40px;}
div#lr-widget {

height: 540px;

如果有更多的代码张贴,以了解我的问题,请让我知道。建议和评论非常感谢。我想这是一个相当小的问题,但我个人卡住了。

我得到错误,表明页面上的链接脚本都没有加载。特别有趣的是jQuery没有加载,bootstrap.js脚本也没有加载。