我已经使用了一些代码用于向上滑动的反馈表单。它放在底部。 我想在底部修复它,就像我在滚动页面一样,它会在那里修复。 我用过的代码:
SeekBar
CSS:
void Update () {
if (Input.GetMouseButton (0)) {
iTween.RotateBy(gameObject, iTween.Hash("x", .25, "easeType", "easeInOutBack", "loopType", "pingPong", "delay", .4));
}
}
jquery:
<div class="feedback">
<a id="feedback_button">Feedback</a>
<div class="form">
<h2>Please Send Us Your Feedback</h2>
<span class="status"></span>
<textarea id="feedback_text"></textarea>
<input type="button" value="Send" id="submit_form" />
</div>
</div>
告诉我如何在底部修复它。
答案 0 :(得分:0)
试试这个:
.feedback{
position:fixed;
//left:0;
bottom:0%;
z-index: 99;
}