我有一个无限的垂直滚动条,当达到一个(可变)阈值时,我想突然限制滚动(只在一个方向上)。
public GameObject MyScrollRectContent;
public float limit = 300;
void Update () {
if(MyScrollRectContent.transform.localPosition.y >= limit){
//make it ONLY possible to scroll backwards or not beyond the limit and stop elasticity
}
有什么
这就是我回答所需的全部内容。
如果您查看我的最后一个问题,您将看到我的类,包含四个字段,对应于我的表的四列
public static class ContactOptions {
private final StringProperty one;
private final StringProperty two;
private final StringProperty three;
private final StringProperty four;
ContactOptions(String col1, String col2, String
我为我的问题做了一个简单的演示页面:
如您所见,它由一个iframe和一个简单的p组成
<iframe src="http://www.w3schools.com" width="100%" height="300"></iframe>
<p>Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium do
我想防止的是,当用户单击iframe,然后滚动时,iframe就会被滚动。
我只希望主页面是滚动的!
我试着让我