在Socket.io中,我知道如何使用#content {
position: relative;
height: 80vh;
width: 50vw;
}
img {
opacity: 0;
z-index: 0;
position: absolute;
display: block;
width: 256px;
height: 256px;
}
a {
display: inline-block;
cursor: pointer;
position: absolute;
}
a#firstLink:hover + img {
opacity: 1;
transition: opacity .7s ease-in-out;
}
连接到特定网址。但是,如果我已经连接到服务器,它似乎不起作用。
基本上,我想更改我连接的服务器(例如,如果当前的服务器脱机)。那我该怎么做呢?我需要先断开连接吗?如果是这样,怎么样?
谢谢!