ferret13
ferret13
Explore posts from servers
JCHJava Community | Help. Code. Learn.
Created by ferret13 on 1/25/2025 in #java-help
Dynamically create redis keyspaces
I have a spring boot, thymeleaf & redis app and am struggling with finding a way to provide to create a dynamic keyspace name that is pojo class name plus session id for each session, it's not a shopping cart but same idea, a link to example doco would be appreciate?
4 replies
KPCKevin Powell - Community
Created by ferret13 on 12/8/2024 in #front-end
Show and Hide table row with animations
Have been struggling for a couple of days now trying to implement animations on showing and hiding table row.... Animation is working on the show keyframe. Code sample;
tr.row-hidden {
display: none;
opacity: 0;

animation: hide 2s;
}

tr {
display: table-row;
opacity: 1;

animation: show 1s;
}

@keyframes show {
from {
display: none;
opacity: 0;
}
to {
display: table-row;
opacity: 1;
}
}

@keyframes hide {
from {
display: table-row;
opacity: 1;
}
to {
display: none;
opacity: 0;
}
}
tr.row-hidden {
display: none;
opacity: 0;

animation: hide 2s;
}

tr {
display: table-row;
opacity: 1;

animation: show 1s;
}

@keyframes show {
from {
display: none;
opacity: 0;
}
to {
display: table-row;
opacity: 1;
}
}

@keyframes hide {
from {
display: table-row;
opacity: 1;
}
to {
display: none;
opacity: 0;
}
}
Any assistance would be appreciated.
29 replies