# image-map-hotspots/2.4/output-css.php

Image Hotspot – Map Image Annotation, version 2.4. 13 lines.

- Page: https://pluginprobe.com/plugins/image-map-hotspots/2.4/code/output-css.php
- Raw: https://pluginprobe.com/plugins/image-map-hotspots/2.4/raw/output-css.php
- Modified: 2024-09-23T15:54:06+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/image-map-hotspots/2.4/code/output-css.php#L10-L20`.

```php
<?php
$pointCssCode = "
  .imh-6310-hover-content {
      transform: scale(0);
      transition: all .5s;
      position: absolute;
      z-index: 999999999999;
  }
";

wp_register_style("imh-6310-template-" . esc_attr($ids) . "-css", "");
wp_enqueue_style("imh-6310-template-" . esc_attr($ids) . "-css");
wp_add_inline_style("imh-6310-template-" . esc_attr($ids) . "-css", $pointCssCode);
```
