摘要: 使用Bootstrap也非常简单,你只需要把下面的链接添加到你需要使用Bootstrap来进行布局的应用的头部: <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap /3.3.1/css/bootstrap.min.css 阅读全文
posted @ 2019-06-12 23:42 风一样的man 阅读(1676) 评论(0) 推荐(0) 编辑
摘要: <script>$(document).ready(function() {$("#target1").css("color","red");});</script> <!-- Only change code above this line. --> <div class="container-f 阅读全文
posted @ 2019-06-12 22:16 风一样的man 阅读(3495) 评论(0) 推荐(0) 编辑
摘要: <script>$(document).ready(function() {$("button").addClass("animated bounce");$(".well").addClass("animated shake");$("#target3").addClass("animated f 阅读全文
posted @ 2019-06-12 22:12 风一样的man 阅读(4280) 评论(0) 推荐(0) 编辑
摘要: <script>$(document).ready(function() {$("button").addClass("animated bounce");//例如,要让所有的button元素有弹回效果,只要把这段代码写在document ready});</script> <!-- Only ch 阅读全文
posted @ 2019-06-12 21:55 风一样的man 阅读(2498) 评论(0) 推荐(0) 编辑
摘要: <script>$(document).ready(function(){ }); 首先,在页面顶部添加一行script元素,然后在下一行写上结束符。 浏览器会运行script里所有的Javascript,包括jQuery。 在你的script元素里,添加这段代码:$(document).ready 阅读全文
posted @ 2019-06-12 21:52 风一样的man 阅读(319) 评论(0) 推荐(0) 编辑