|
|
|
สอบถามเกี่ยวกับตัว scrollTop display none หน่อยครับ |
|
|
|
|
|
|
|
https://stackoverflow.com/a/19299715/128761
Code (JavaScript)
jQuery(document).ready(function ($) {
$(".frage li").click(function () {
if (!$(this).find(".antwort").is(".open")) {
$(this).find(".antwort").css({
display: "block"
});
$(this).find(".antwort").animate({
opacity: 1
}, 1500).addClass('open');
} else {
$(this).find(".antwort").animate({
opacity: 0
}, 1500, function() {
// Animation complete.
$(this).hide()
}).removeClass('open');
}
return false;
});
});
ประยุกต์ดู มันเอามาต่อหลังตัวเลขแค่นั้น
อ้างอิง https://api.jquery.com/animate/
Code (JavaScript)
$( "#clickme" ).click(function() {
$( "#book" ).animate({
opacity: 0.25,
left: "+=50",
height: "toggle"
}, 5000, function() {
// Animation complete.
});
});
|
|
|
|
|
Date :
2020-10-25 20:59:21 |
By :
mr.v |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|