我想知道是否有人拥有将播放功能绑定到按钮的信息。我已经阅读了flexslider文档,可以看到有可用的功能,但是没有激活它的方法。我想在幻灯片的第一张幻灯片中添加一个开始按钮,并启动幻灯片。我的js技能是新手。任何信息将不胜感激。
我的基本滑块代码是:
$(document).ready(function() {
$('.flexslider').flexslider({
slideshow: false,
useCSS: false,
controlNav: false,
directionNav: false,
animationLoop: false
});
});
答案 0 :(得分:0)
我能够通过以下代码使用它:
dict = {"These": 1, "are": 2, "words": 3}
while True:
try:
w = input("Enter a word: ")
except:
print("That word is not a key in the dictionary, try again")
else:
print("That word is a key in the dictionary")