我正在重新创建此site的输入示例。当您在输入内部单击时,作为占位符的标签向上移动并充当标签。此操作在CSS中完成。表单的数据没有更新,但UI正在改变,这是否算作状态的变化? CSS中的更改是仅仅保留CSS,还是应该由React组件中的某些内容触发?
有一个例子,在JSFiddle处没有React。
JS:
function generate_adaptive_text_input(initial, focused){
var adaptive_placeholder_input_container = $("<div />", {
class: 'adaptive_placeholder_input_container'
});
var adaptive_placeholder_input = $("<input />",{
type: 'text',
required: '',
class: 'adaptive_text_input'
});
var adaptive_placeholder_label = $("<label />",{
alt: initial,
placeholder: focused,
class: 'adaptive_placeholder'
});
adaptive_placeholder_input_container.append(adaptive_placeholder_input);
adaptive_placeholder_input_container.append(adaptive_placeholder_label);
return adaptive_placeholder_input_container;
}
function generate_form(){
var form = $('<form />');
var first_example = generate_adaptive_text_input('Placeholder', 'Active Placeholder');
var second_example = generate_adaptive_text_input('Off', 'On');
$(form).append(first_example);
$(form).append(second_example);
return form;
}
function generate_page(){
var form = generate_form();
$('body').append(form);
}
CSS:
.adaptive_placeholder_input_container {
position: relative;
}
.adaptive_text_input {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 200px;
height: 40px;
border: 3px solid #aaaaaa;
border-radius: 10px;
margin: 0 0 1em;
padding: 1em;
background: #fff;
resize: none;
outline: none;
}
.adaptive_text_input:focus {
border-color: #00bafa;
}
.adaptive_text_input:focus + .adaptive_placeholder:before {
color: #00bafa;
}
.adaptive_text_input:focus + .adaptive_placeholder:before, .adaptive_text_input:valid + .adaptive_placeholder:before {
-webkit-transition-duration: .2s;
-webkit-transform: translate(0, -16px) scale(0.9, 0.9);
}
.adaptive_text_input:invalid + .adaptive_placeholder:before {
content: attr(alt);
}
.adaptive_text_input + .adaptive_placeholder {
pointer-events: none;
line-height: 1em;
position: absolute;
left: 10px;
top: 10px;
}
.adaptive_text_input + .adaptive_placeholder:before {
font-family: Verdana, Geneva, sans-serif;
content: attr(placeholder);
display: inline-block;
padding: 0 2px;
color: #898989;
-webkit-transition: 0.3s ease-in-out;
background-color: #ffffff;
}
答案 0 :(得分:3)
我通常会考虑另一个方向的状态;而不是说,“这个UI更新计为状态变化,”我认为“这个UI更新需要状态发生变化才能运行。”答案是肯定的,如果:
render
函数中的某些数据来有条件地应用某个类。如果这两个问题的答案都是“不”,我认为将UI更改完全保留在CSS中是完全有效的。
答案 1 :(得分:0)
我同意布兰登的说法。
考虑这个例子:
在某些时候,您可能希望某些操作(快捷键)根据所关注的内容产生不同的后果。然后聚焦的对象成为你所在州的一部分。
如果这种情况永远不会发生,你可以使用纯CSS解决方案。