我有<div id="test"></div>
和<a id="trigger"></a>
。 Div的宽度为300px。我希望div在用户单击触发器时将其宽度调整为100px,并且当用户再次单击触发器时想要将其大小调整为先前的大小。我怎样才能使用jquery?
提前致谢... :)
blasteralfred
答案 0 :(得分:29)
为单击分配变量1,为unlick分配0,然后使用.click函数,如下所示:
$(document).ready(function(){
TriggerClick = 0;
$("a#trigger").click(function(){
if(TriggerClick==0){
TriggerClick=1;
$("div#test").animate({width:'100px'}, 500);
}else{
TriggerClick=0;
$("div#test").animate({width:'300px'}, 500);
};
});
});
更新 - 更好的答案
我提出这个建议了一会儿;但相信有更优雅和务实的方法来解决这个问题。你可以使用CSS转换并让jquery简单地添加/删除一个启动转换的类:
工作小提琴: https://jsfiddle.net/2q0odoLk/
CSS:
#test {
height: 300px;
width: 300px;
background-color: red;
/* setup the css transitions */
-webkit-transition: width 1s;
-moz-transition: width 1s;
transition: width 1s;
}
#test.small {
width: 100px;
}
jQuery的:
$("a#trigger").on('click', function(){
$("div#test").toggleClass('small');
});
答案 1 :(得分:2)
这是此切换的Html Part
:
<div id="start">
<div class="slide"></div>
</div>
这是CSS part
:
<style>
#start{ margin-bottom:60px; display:block; font-size:16px; width:14px; height:79px; position:relative; top:25px; line-height:21px; color:#F0F; background:url(./start1.JPG) left top no-repeat;}
.slide{ background:#98bf21; max-width:500px; width:100; height:100px;position:absolute; left:14px;}
</style>
<script>
$(document).ready(function()
{
function tog()
{
var w = $(".slide").css('width');
if(w=='0px')
{
$(".slide").animate({
width:500
});
}
else
{
$(".slide").animate({
width:0
});
}
}
$("#start").click(function()
{
tog();
});
});
</script>
答案 2 :(得分:0)
答案 3 :(得分:0)
这样的事情应该是诀窍。
$('#trigger').bind('click', function() { $('#test').animate({"width": "100px"}, "slow"); })
答案 4 :(得分:0)
对于那些寻找更短但工作版本的人,你可以这样做:
$('a#trigger').on('click', function(e) {
e.preventDefault();
var w = ($('div#test').width() == 300 ? 100 : 300);
$('div#test').animate({width:w},150);
});
最短版本:
$('a#trigger').on('click', function(e) {
e.preventDefault();
$('div#test').animate({width:($('div#test').width() == 300 ? 100 : 300)},150);
});
在功能上:
function toggleWidth(target, start, end, duration) {
var w = ($(target).width() == start ? end : start);
$(target).animate({width:w},duration);
return w;
}
用法:
$('a#trigger').on('click', function(e) {
e.preventDefault();
toggleWidth($("div#test"), 300, 100, 150);
});
最后在JQuery.fn.extend函数上:
jQuery.fn.extend({
toggleWidth: function(start, end, duration) {
var w = ($(this).width() == start ? end : start);
$(this).animate({width:w},duration);
return w;
}
});
用法:
$('a#trigger').on('click', function(e) {
e.preventDefault();
$("div#test").toggleWidth(300, 100, 150);
});