Questions tagged «mouseover»

24
如何检查鼠标是否在jQuery中的元素上?
有没有一种快速简便的方法可以在我缺少的jQuery中做到这一点? 我不想使用mouseover事件,因为我已经将它用于其他用途。我只需要知道鼠标在给定时刻是否位于某个元素上。 如果只有一个“ IsMouseOver”功能,我想做这样的事情: function hideTip(oi) { setTimeout(function() { if (!IsMouseOver(oi)) $(oi).fadeOut(); }, 100); }
265 jquery  mouseover 

5
在鼠标悬停在圆上时显示数据
我有一组要分散绘制的数据。当我将鼠标悬停在一个圆圈上时,我希望它弹出数据(例如x,y值,也许更多)。这是我尝试使用的方法: vis.selectAll("circle") .data(datafiltered).enter().append("svg:circle") .attr("cx", function(d) { return x(d.x);}) .attr("cy", function(d) {return y(d.y)}) .attr("fill", "red").attr("r", 15) .on("mouseover", function() { d3.select(this).enter().append("text") .text(function(d) {return d.x;}) .attr("x", function(d) {return x(d.x);}) .attr("y", function (d) {return y(d.y);}); }); 我怀疑我需要提供更多有关输入哪些数据的信息?
162 tooltip  mouseover  d3.js 

8
如何使用Java在Selenium WebDriver中执行鼠标悬停功能?
我想在下拉菜单上执行鼠标悬停功能。当我们将鼠标悬停在菜单上时,它将显示新选项。我试图使用xpath单击新选项。但是不能直接单击菜单。因此,作为手动方式,我尝试将鼠标悬停在下拉菜单上,然后单击新选项。 Actions action = new Actions(webdriver); WebElement we = webdriver.findElement(By.xpath("//html/body/div[13]/ul/li[4]/a")); action.moveToElement(we).build().perform();

26
iPad / iPhone悬停问题导致用户双击链接
我有一些我以前建立的网站,使用jquery鼠标事件...我刚得到一个ipad,我注意到所有鼠标悬停事件都是通过单击转换的...因此,例如,我必须单击两次而不是单击一次..(第一个鼠标悬停,而不是实际点击) 是否有准备解决此问题的解决方法?也许我应该使用jquery命令来代替mouseover / out等。谢谢!
125 jquery  ipad  hover  mouseover 

6
如何在WPF中更改Button MouseOver的背景?
我的页面上带有此XAML的按钮: <Button Content="Button" HorizontalAlignment="Left" VerticalAlignment="Bottom" Width="50" Height="50" HorizontalContentAlignment="Left" BorderBrush="{x:Null}" Foreground="{x:Null}" Margin="50,0,0,0"> <Button.Style> <Style TargetType="Button"> <Setter Property="Background" Value="Green"/> <Style.Triggers> <Trigger Property="IsMouseOver" Value="True"> <Setter Property="Background" Value="Red"/> </Trigger> </Style.Triggers> </Style> </Button.Style> </Button> 但是,当我将鼠标放在按钮上时,按钮的背景会更改为默认窗口的灰色背景。有什么问题? 这是鼠标悬停之前和之后的按钮图片: 之前: 之后:



4
鼠标结束时更改按钮的颜色
我想更改按钮的背景色 IsMouseOver == True <Button Command="{Binding ClickRectangleColorCommand}" Background="{Binding Color, Converter={StaticResource RGBCtoBrushColorsConverter},Mode=TwoWay}" Width="auto" Height="40"> <TextBlock Foreground="Black" Text="{Binding Color, Converter={StaticResource RGBCColorToTextConveter},Mode=TwoWay}"/> <Button.Style> <Style TargetType="Button" BasedOn="{StaticResource {x:Type Button}}"> <Style.Triggers> <Trigger Property="IsMouseOver" Value="True"> <Setter Property="Background" Value="DarkGoldenrod"/> </Trigger> </Style.Triggers> </Style> </Button.Style> </Button> I can't seem to understand why this trigger isn't working.
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.