窓のPVCとドアのPVC製品でウェブサイトを作りました。電卓で注文ページを作りたいです。動作していますが、ウィンドウの構成をアニメーション化する必要があります (例: http://orasvirtual.ro/images/a.JPG )。そのため、デフォルトのウィンドウ サイズは高さ 250px、幅 350px です。4 つのボタンを作成しました: (例: http://orasvirtual.ro/images/b.JPG ) 高さを上げる、高さを下げる、幅を上げる、幅を下げる。今まで作ってきましたが、クリックをx秒長押しで増減する作り方です。
全てに感謝
わかりました、今まで NullPointer のおかげでこれを作成しました:
html:
<div id='divid'>div</div>
<button id="inch" >+ h</button>
<button id="dech" >- h</button>
<button id="incw" >+ w</button>
<button id="decw" >- w</button>
jquery:
$("#inch").click(function(){
var height = $("#divid").height()+1; //to decrease just -1 instead of 1
$("#divid").height( height );
})
$("#dech").click(function(){
var height = $("#divid").height()-1; //to decrease just -1 instead of 1
$("#divid").height( height );
})
$("#incw").click(function(){
var width= $("#divid").width()+1; //to decrease just -1 instead of 1
$("#divid").width( width );
})
$("#decw").click(function(){
var width= $("#divid").width()-1; //to decrease just -1 instead of 1
$("#divid").width( width );
})