- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
recurly.configure 样式不起作用。我已经从 Getting Started 下的文档中复制了确切的示例并且该 ID 似乎未应用于 iframe 中的字段。
最佳答案
我遇到了同样的问题。在与 Recurly 的支持人员交谈后,他们发现文档需要更新。
示例 recurly.configure()
将不起作用。您不需要在 js 中包含 fields:{}
。所以你可以把它更新成这样:
recurly.configure({
publicKey: 'PUBLIC_KEY',
style: {
all: {
fontFamily: 'Open Sans',
fontSize: '1rem',
fontWeight: 'bold',
fontColor: '#2c0730'
},
number: {
placeholder: ''
},
month: {
placeholder: 'mm'
},
year: {
placeholder: 'yy'
}
}
});
他们还向我发送了一个包含基本工作示例的链接: https://github.com/recurly/recurly-js-examples/blob/master/public/minimal/index.html
示例内容如下:
// Configure recurly.js
recurly.configure({
publicKey: 'PUBLIC_KEY',
style: {
all: {
fontFamily: 'Open Sans',
fontSize: '1rem',
fontWeight: 'bold',
fontColor: '#2c0730'
},
number: {
placeholder: '0000-0000-0000-0000'
},
month: {
placeholder: 'mm'
},
year: {
placeholder: 'yy'
}
}
});
// When a customer hits their 'enter' key while in a field
recurly.on('field:submit', function (event) {
$('form').submit();
});
// On form submit, we stop submission to go get the token
$('form').on('submit', function (event) {
// Prevent the form from submitting while we retrieve the token from Recurly
event.preventDefault();
// Reset the errors display
$('#errors').text('');
$('input').removeClass('error');
// Disable the submit button
$('button').prop('disabled', true);
var form = this;
// Now we call recurly.token with the form. It goes to Recurly servers
// to tokenize the credit card information, then injects the token into the
// data-recurly="token" field above
recurly.token(form, function (err, token) {
// send any errors to the error function below
if (err) error(err);
// Otherwise we continue with the form submission
else form.submit();
});
});
// Reconfigure font size based on window size
$(window).on('resize init', function (event) {
if ($(this).width() < 600) {
recurly.configure({
style: {
all: {
fontSize: '0.9rem'
}
}
});
} else {
recurly.configure({
style: {
all: {
fontSize: '1rem'
}
}
});
}
}).triggerHandler('init');
// A simple error handling function to expose errors to the customer
function error (err) {
$('#errors').text('The following fields appear to be invalid: ' + err.fields.join(', '));
$('button').prop('disabled', false);
$.each(err.fields, function (i, field) {
$('[data-recurly=' + field + ']').addClass('error');
});
}
// runs some simple animations for the page
$('body').addClass('show');
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
html, body {
height: 100%;
margin: 0;
padding: 0;
}
body {
background: -webkit-linear-gradient(-30deg, #e1e3e6, #ebeff8);
background: -moz-linear-gradient(-30deg, #e1e3e6, #ebeff8);
background: -ms-linear-gradient(-30deg, #e1e3e6, #ebeff8);
background: -o-linear-gradient(-30deg, #e1e3e6, #ebeff8);
background: linear-gradient(-30deg, #e1e3e6, #ebeff8);
font-family: 'Open Sans', Helvetica, sans-serif;
text-align: center;
}
section {
margin: 0 auto;
max-width: 16rem;
}
section:first-child {
overflow: auto;
}
form {
}
label {
display: block;
text-align: left;
width: 100%;
margin: 0 0 0.2rem;
color: #2c0730;
font-size: 0.8rem;
font-weight: bold;
text-transform: uppercase;
clear: left;
}
input {
position: relative;
width: 100%;
border: 2px solid #c2c2c2;
background: transparent;
padding: 0.5rem;
margin: 0 0 1rem;
outline: none;
font-family: 'Open Sans', Helvetica, sans-serif;
font-size: 1rem;
font-weight: bold;
box-shadow: none;
border-radius: 0;
color: #c2c2c2;
-webkit-appearance: none;
-webkit-transition: border-color 0.3s;
-moz-transition: border-color 0.3s;
-ms-transition: border-color 0.3s;
-o-transition: border-color 0.3s;
transition: border-color 0.3s;
}
input:focus {
border-color: #2c0730;
color: #2c0730;
z-index: 10;
}
input.error {
border-color: #e43c29;
}
div.error .recurly-hosted-field {
border: 2px solid #e43c29;
}
div.date {
display: inline-block;
width: 4.5rem;
float: left;
text-align: left;
margin-right: -2px;
}
div.date label {
display: inline-block;
clear: none;
}
div.date input {
display: inline-block;
}
button {
border: none;
width: 100%;
background: #2c0730;
outline: none;
padding: 1rem;
font-family: 'Open Sans', Helvetica, sans-serif;
font-size: 1rem;
font-weight: bold;
letter-spacing: 0.15rem;
color: #f5f5f5;
cursor: pointer;
-webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
-moz-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
-ms-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
-o-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
-webkit-transition: opacity 0.3s;
-moz-transition: opacity 0.3s;
-ms-transition: opacity 0.3s;
-o-transition: opacity 0.3s;
transition: opacity 0.3s;
}
button:disabled {
opacity: 0.6;
}
figure {
margin: 0;
}
figure.logo {
width: 9rem;
height: 9rem;
background: #f5f5f5;
border-radius: 100px;
margin: 2rem auto;
line-height: 9rem;
letter-spacing: 0.1rem;
font-size: 1.5rem;
color: #2c0730;
-webkit-transition: border-radius 0.5s, width 0.5s, height 0.5s, margin 0.5s, line-height 0.5s;
-moz-transition: border-radius 0.5s, width 0.5s, height 0.5s, margin 0.5s, line-height 0.5s;
-ms-transition: border-radius 0.5s, width 0.5s, height 0.5s, margin 0.5s, line-height 0.5s;
-o-transition: border-radius 0.5s, width 0.5s, height 0.5s, margin 0.5s, line-height 0.5s;
transition: border-radius 0.5s, width 0.5s, height 0.5s, margin 0.5s, line-height 0.5s;
}
figure.logo .term {
line-height: 1em;
font-size: 0.5em;
margin-left: -0.25rem;
}
figure.success {
width: 100%;
background: #30af3b;
padding: 1rem;
font-family: 'Open Sans', Helvetica, sans-serif;
font-size: 1rem;
font-weight: bold;
letter-spacing: 0.15rem;
color: #f5f5f5;
opacity: 0;
position: relative;
top: 4rem;
-webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
-moz-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
-ms-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
-o-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
-webkit-transition: opacity 0.5s 0.25s, top 1s;
-moz-transition: opacity 0.5s 0.25s, top 1s;
-ms-transition: opacity 0.5s 0.25s, top 1s;
-o-transition: opacity 0.5s 0.25s, top 1s;
transition: opacity 0.5s 0.25s, top 1s;
}
@media screen and (max-height: 599px) {
figure.logo {
width: 100%;
height: 3rem;
margin: 2rem auto 1rem;
border-radius: 0;
line-height: 3rem;
}
}
.recurly-hosted-field {
position: relative;
width: 100%;
height: 42px;
border: 2px solid #c2c2c2;
background: transparent;
padding: 0.5rem;
margin: 0 0 1rem;
outline: none;
font-family: 'Open Sans', Helvetica, sans-serif;
font-size: 1rem;
font-weight: bold;
box-shadow: none;
border-radius: 0;
color: #c2c2c2;
-webkit-appearance: none;
-webkit-transition: border-color 0.3s;
-moz-transition: border-color 0.3s;
-ms-transition: border-color 0.3s;
-o-transition: border-color 0.3s;
transition: border-color 0.3s;
}
.recurly-hosted-field-focus {
border-color: #2c0730;
color: #2c0730;
z-index: 10;
}
<script src="https://js.recurly.com/v4/recurly.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<section>
<figure class="logo">
<span class="price">$10</span>
<span class="term">monthly</span>
</figure>
</section>
<section id="errors"></section>
<section>
<form method="post" action="/api/subscriptions/new">
<div>
<label for="number">Card Number</label>
<div data-recurly="number" id="number"></div>
</div>
<div class="date">
<label for="month">Month</label>
<div data-recurly="month" id="month"></div>
</div>
<div class="date">
<label for="year">Year</label>
<div data-recurly="year" id="year"></div>
</div>
<div>
<label for="first_name">First Name</label>
<input type="text" data-recurly="first_name" id="first_name" name="first-name">
</div>
<div>
<label for="last_name">Last Name</label>
<input type="text" data-recurly="last_name" id="last_name" name="last-name">
</div>
<button id="subscribe">Subscribe</button>
<input type="hidden" data-recurly="token" name="recurly-token">
</form>
</section>
关于递归风格不做任何事情,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38174109/
我有一个关于 JavaScript 语法的问题。实际上,我在自学 MEAN 堆栈教程时想出了编码(https://thinkster.io/mean-stack-tutorial#adding-aut
在我的书中它使用了这样的东西: for($ARGV[0]) { Expression && do { print "..."; last; }; ... } for 循环不完整吗?另外,do 的意义何
我已经编写了读取开关状态的代码,如果按 3 次 # 则退出。 void allkeypadTest(void) { static uint8_t modeKeyCount=0; do
因此,对于上周我必须做的作业,我必须使用 4 个 do-while 循环和 if 语句在 Java 中制作一个猜谜游戏。我无法成功完成它,类(class)已经继续,没有为我提供任何帮助。如果有人可以查
int i=1,j=0,n=10,k; do{ j+=i; i<<1; printf("%d\n",i); // printf("%d\n",12<<1); }while
此代码用于基本杂货计算器的按钮。当我按下按钮时,一个输入对话框会显示您输入商品价格的位置。我遇到的问题是我无法弄清楚如何获得 do ... while 循环以使输入对话框在输入后弹出。 我希望它始终恢
当我在循环中修改字符串或另一个变量时,它的条件是否每次都重新计算?或者在循环开始前一次 std::string a("aa"); do { a = "aaaa"; } while(a.size<10)
我刚刚写了这个,但我找不到问题。我使用代码块并编写了这个问题 error: expected 'while' before '{' token === Build finished: 1 errors
do { printf("Enter number (0-6): ", ""); scanf("%d", &Num); }while(Num >= 0 && Num 表示“超过”,<表
我有一个包含 10 个项目的 vector (为简单起见,所有项目都属于同一类,称其为“a”)。我想要做的是检查“A”不是 a) 隐藏墙壁或 b) 隐藏另一个“A”。我有一个碰撞函数可以做到这一点。
嗨,这是我的第二个问题。我有下表 |-----|-------|------|------| |._id.|..INFO.|.DONE.|.LAST.| |..1..|...A...|...N..|.
这个问题在这里已经有了答案: 关闭 12 年前。 Possible Duplicates: Why are there sometimes meaningless do/while and if/e
来自 wikibook在 F# 上有一小部分它说: What does let! do?# let! runs an async object on its own thread, then it i
我在 Real World Haskell 书中遇到了以下函数: namesMatching pat | not (isPattern pat) = do exists do
我有一个类似于下面的用例,我创建了多个图并使用 gridExtra 将它们排列到一些页面布局中,最后使用 ggsave 将其保存为 PDF : p1 % mutate(label2
当我使用具有 for 循环的嵌套 let 语句时,如果没有 (do (html5 ..)),我将无法运行内部 [:tr]。 (defpartial column-settings-layout [&
执行 vagrant up 时出现此错误: anr@anr-Lenovo-G505s ~ $ vagrant up Bringing machine 'default' up with 'virtua
# ################################################# # Subroutine to add data to the table Blas
我想创建一个检查特定日期格式的读取主机。此外,目标是检查用户输入是否正确,如果不正确,则提示应再次弹出。 当我刚接触编程时,发现了这段代码,这似乎很合适。我仍然在努力“直到” do {
我关注这个tutorial在谷歌云机器学习引擎上进行培训。我一步一步地跟着它,但是在将 ml 作业提交到云时我遇到了错误。我运行了这个命令。 sam@sam-VirtualBox:~/models/r
我是一名优秀的程序员,十分优秀!