gpt4 book ai didi

javascript - 如何在 R 中的 javascript 代码中更改动画速度?

转载 作者:行者123 更新时间:2023-11-29 10:56:09 25 4
gpt4 key购买 nike

我想在 R 中更改 plotly 动画的速度。但是,该动画不是由 plotly 动画提供的默认播放按钮触发的。根据 JS 代码,它通过单击 Shiny 操作按钮触发。在这种情况下,似乎没有考虑 animation_opts() 参数。

我已经尝试更改 animation_opts() 参数,例如“frame”和“transition”,但动画保持不变。我还尝试在 javascript 代码中更改这些参数,但动画甚至没有开始。

library(shiny)
library(plotly)
library(htmlwidgets)

ui <- fluidPage(
actionButton("anim", "Animate"),
plotlyOutput("plot")
)

server <- function(input, output){
output[["plot"]] <- renderPlotly({
df <- data.frame(
x = c(1,2,1),
y = c(1,2,1),
f = c(1,2,3)
)
df %>%
plot_ly(
x = ~x,
y = ~y,
frame = ~f,
type = 'scatter',
mode = 'markers',
marker = list(size = 20),
showlegend = FALSE
) %>%
animation_opts(frame = 5000, transition = 4500, redraw = FALSE) %>%
animation_button(visible = FALSE) %>%
onRender("
function(el,x){
$('#anim').on('click', function(){Plotly.animate(el);});
}")

})
}

shinyApp(ui, server)

我想为 plotly 动画的帧和过渡持续时间设置一个参数,并能够在代码中更改它。

最佳答案

以下是设置这些选项的方法:

library(shiny)
library(plotly)
library(htmlwidgets)

ui <- fluidPage(
actionButton("anim", "Animate"),
plotlyOutput("plot")
)

server <- function(input, output){
output[["plot"]] <- renderPlotly({
df <- data.frame(
x = c(1,2,1),
y = c(1,2,1),
f = c(1,2,3)
)
df %>%
plot_ly(
x = ~x,
y = ~y,
frame = ~f,
type = 'scatter',
mode = 'markers',
marker = list(size = 20),
showlegend = FALSE
) %>%
# animation_opts(frame = 5000, transition = 4500, redraw = FALSE) %>%
animation_button(visible = FALSE) %>%
onRender("
function(el,x){
$('#anim').on('click', function(){
Plotly.animate(el,
null,
{
transition: {
duration: 2000,
easing: 'cubic-in-out'
},
frame: {
duration: 2000
}
}
);
});
}")
})
}

shinyApp(ui, server)

关于javascript - 如何在 R 中的 javascript 代码中更改动画速度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56855505/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com