xmas town

description

// ==UserScript==
// @name         xmas town
// @namespace    namespace
// @version      0.1
// @description  description
// @author       tos
// @match       *.torn.com/christmas_town.php*
// @grant        GM_addStyle
// ==/UserScript==

GM_addStyle(`
.d .user-map-container .user-map:before {
    background: none !important;
}

@keyframes pulse {
  0% {opacity: 0;}
  50% {opacity: 1;}
  100% {opacity: 0;}
}

div.items-layer div.ct-item::after {
  background-image: radial-gradient(rgba(0, 0, 0, 0), red);
  border-radius: 100%;
  content: "";
  display: block;
  position: relative;
  bottom: 200%;
  right: 200%;
  height: 500%;
  width: 500%;
  animation-name: pulse;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
`)

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址