Answer the question
In order to leave comments, you need to log in
How to cool down a disk?
I bought an external hdd. At idle 45 degrees. Under load 55. How can I cool it?
Answer the question
In order to leave comments, you need to log in
Do nothing, 55 gr. this is an absolutely normal temperature for electronics, if only 85-95 gr. then maybe it was worth squeezing the testicles.
I have exactly the same heat. All the same physically there the disk is twisted. It all depends on the disk manufacturer
Well, I will say that it depends on the case and location. Let's start with the case - you need fans to cool everything, a couple of pieces are enough. It also plays a role - holes for air, you can google the correct cooling of the PC.
As for the location - it happens that the house has a warm floor (Heaters) and if the PC is above the heater - you know, it heats up.
Nothing else comes to mind. I have 26 degrees on both drives, although it is very cold when touched, most likely due to 7 fans.
Pure CSS
codepen.io/STutukov/pen/gmgZdW?editors=1100
UPD:
can also be done via:
1. svg
2. mix-blend-mode
3. codepen.io/hendrysadrak/pen/VLMOMJ - something like this
4 .shpargalkablog.ru /2013/11/gradient-text.html
5. Etc.
And what, in fact, is the difference between pictures or text?
As far as I can see, this is just an animated div with fixed sizes, you can even put an inline svg on top of it, there will be no difference.
If you are interested in the animation itself, then it is in the source files of the same site
.loader__logo--white {
position: absolute;
top: 0;
left: 0;
overflow: hidden;
background-image: url(/img/global/omnam_logo-white.png);
-webkit-animation-name: loading;
animation-name: loading;
-webkit-animation-duration: 4s;
animation-duration: 4s;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
-webkit-animation-play-state: playing;
animation-play-state: playing;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
@keyframes loading {
0% {
width: 0%;
opacity: 1;
}
60% {
width: 100%;
opacity: 1;
}
100% {
opacity: 0;
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question