animate.css copy selected animate name

try to take over the world!

目前為 2020-04-08 提交的版本,檢視 最新版本

// ==UserScript==
// @name         animate.css copy selected animate name
// @namespace    http://tampermonkey.net/
// @version      0.0.2
// @description  try to take over the world!
// @author       You
// @match        https://daneden.github.io/animate.css/
// @grant        none
// ==/UserScript==
/* jshint esversion: 6 */
;(function () {
  'use strict'
  // Your code here...
  const wrap = document.querySelector('.site__content .wrap')
  const btn = document.createElement('button')
  btn.classList.add('butt')
  btn.innerText = 'Copy Animate Name'
  btn.onclick = function () {
    const select = document.querySelector(
      '.input.input--dropdown.js--animations'
    )
    const text = select.options[select.selectedIndex].text
    const handleCopy = function (e) {
      e.clipboardData.setData('text/plain', text)
      e.preventDefault() // We want our data, not data from any selection, to be written to the clipboard
    }
    document.addEventListener('copy', handleCopy)
    document.execCommand('copy')
    document.removeEventListener('copy', handleCopy)
  }
  wrap.appendChild(btn)
})()

QingJ © 2025

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