- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要插入一个按钮,让我的参与者可以随时退出我的研究。
我找到了一个 css 代码,可以在每个页面上插入“撤回”按钮。然而,这个“退出”按钮位于“下一步”按钮旁边,我不希望我的参与者误按它并退出调查。 这是我在 Qualtrics 页脚中使用的代码:
var inject_me = function() {
if (!$("#NextButton").length) {
window.requestAnimationFrame(inject_me());
} else {
var element = document.getElementById('toggle');
if (typeof(element) != 'undefined' && element != null) {
document.getElementById('ProgressBar').style.display = "none";
} else {
function addParameterToURL(param) {
_url = location.href;
_url += (_url.split('?')[1] ? '&' : '?') + param;
return _url;
}
newURL = addParameterToURL("withdraw=true");
var withdraw = "<a href=\"" + newURL + "\" onclick=\"javascript:return confirm('Are you sure you want to withdraw?')\" class=confirm id='WithdrawLink'><span class='ButtonLeft'></span><span class='WithdrawButton Button' id='WithdrawButton'>WITHDRAW</span><span class='Button' style='float:left !important'></span></a> "
var buttonsDiv = document.getElementById("Buttons");
buttonsDiv.innerHTML = withdraw + buttonsDiv.innerHTML;
}
if (document.getElementsByClassName("EndOfSurvey").length) {
document.getElementById('Withdraw').style.display = "none";
document.getElementById('ProgressBar').style.display = "none";
}
if (document.getElementsByClassName("SurveyError").length) {
document.getElementById('Withdraw').style.display = "none";
}
}
};
inject_me();
/* Place your CSS here */
.Skin #Buttons #WithdrawButton {
border: none;
color: #fff;
font-size: 16px;
padding: 8px 20px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
border-radius: 4px;
cursor: pointer;
margin: 0;
text-align: center;
text-decoration: none;
-webkit-appearance: none;
transition: background .3s;
background-color: #900;
opacity: .25;
}
#WithdrawLink {
text-decoration: none;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
最佳答案
使用flexbox方法。我希望下面的代码有效。
.Skin #Buttons #WithdrawButton {
display: flex;
justify-content: flex-start;
}
关于css - 使用 css 在 Qualtrics 中将 "Withdraw"按钮对齐到左侧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49572728/
我正在我的 python 应用程序中实现剪贴板监视器。如果复制的文本满足某些要求,我想向用户显示一个对话框。如果用户单击"is",我想触发一个函数 - 在本例中为 webui.app.add_inte
我想在调用withdraw 后显示一个窗口。 以下是我目前的代码: from Tkinter import * def callback(): global root root.
我一直在致力于制作一个模拟银行交易的程序。我必须询问用户是否要存款、取款或转账。现在我正在研究帐户的存款和取款选项。 当用户选择一项交易(例如存款)并输入一个数字时,我让程序询问“您想继续此交易吗?显
本文整理了Java中io.dddbyexamples.cqrs.application.WithdrawalProcess.withdraw()方法的一些代码示例,展示了WithdrawalProce
我需要插入一个按钮,让我的参与者可以随时退出我的研究。 我找到了一个 css 代码,可以在每个页面上插入“撤回”按钮。然而,这个“退出”按钮位于“下一步”按钮旁边,我不希望我的参与者误按它并退出调查。
我正在尝试处理由 PayPal 银行提款产生的交易。 当系统(通过自动转账)或用户将资金从 PayPal 账户转账到关联的银行账户时,就会发生银行提款。这将创建交易类型:“将资金提取到银行账户” 任何
就 Tkinter 的 iconify() 和 withdraw() 方法的区别而言,我一直在搜索但没有找到答案。 iconify() 似乎将窗口“转换”为任务栏图标并具有“图标”状态 withdra
我目前正在使用 Kraken API 下订单和提取货币。问题是当我想通过 Kraken API 提取欧元时,他们要求我输入我的提款 key 名称。我以为这是我的 API key 或我的 key 描述,
我是一名优秀的程序员,十分优秀!