笨猫博客

  • 🍟首页
  • 🍘目录
    • 🥝VPS教程
    • 🍾猫玩技术
    • 🍹干货分享
    • 🍏软件分享
    • 🍩一只猫
  • 🍋工具
    • 🌽IP路由追踪
    • 🍐域名Whois查询
    • 🥘域名被墙查询
    • 🍧IP正常检测
    • 🔥IP端口检测
    • 🍆短网址
    • 🐟VIP音乐播放
    • 🍯KMS激活
  • 🍓链接
  • 🍪联系
  • 🍱登录
    • 🥦登录
    • 🍒注册
关注互联网,生活,音乐,乐此不疲的一只笨猫
  1. 首页
  2. 猫玩技术
  3. 正文

制作widget小工具| 整合Aplayer.js音乐播放器到小工具

2020-07-25 3242点热度 5人点赞 0条评论

Aplayer的音乐播放器界面确实好看,所以决定也弄一个,最终整合到侧边栏的小工具上,这样方便在不同的地方调用不同的音乐

先看看效果图:

制作widget小工具| 整合Aplayer.js音乐播放器到小工具–爱CSS-每多学一点知识就少写一行代码

 

 

 

 

 

 

 

Aplayer.js

以下是制作widget小工具的全部代码,把以下代码存为:widget-aplayer.php

以下是制作widget小工具的全部代码,把以下代码存为:widget-aplayer.php

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<?php
add_action('widgets_init', 'widgetaplayerInit');
function widgetaplayerInit() {
    register_widget('widgetaplayer');
}
class widgetaplayer extends WP_Widget {
    /**
     * widgetProfile setup
     */
    function widgetaplayer() {
        $widget_ops = array('classname' => 'widget-aplayer', 'description' => '添加Aplayer播放器');
        // init widgetProfile
        parent::__construct('widget-aplayer', "Aplayer播放器", $widget_ops);
    }
    /**
     * How to display the widgetProfile on the screen.
     */
    function widget( $args, $instance ) {
        extract( $args );
        /* Our variables from the widget settings. */
        $title = apply_filters('widget_name', $instance['title'] );
        $type = $instance['type'];
        $gs = $instance['gs'];
        $auto = $instance['auto'];
        $auto = $instance['auto'];
        $url = $instance['url'];
        $pic = $instance['pic'];
        $word = $instance['word'];
        echo $before_widget;
        echo $this->showWidget($title,$type,$gs, $auto, $url, $pic,$word);
        echo $after_widget;
    }
    /**
     * Update the widget settings.
     */
    function update( $new_instance, $old_instance ) {
        $instance = $old_instance;
        /* Strip tags for title and name to remove HTML (important for text inputs). */
        $instance['title'] = strip_tags( $new_instance['title'] );
        $instance['type'] = strip_tags( $new_instance['type'] );
        $instance['gs'] = strip_tags( $new_instance['gs'] );
        $instance['auto'] = strip_tags( $new_instance['auto'] );
        $instance['url'] = strip_tags( $new_instance['url'] );
        $instance['pic'] = strip_tags( $new_instance['pic'] );
        $instance['word'] = strip_tags( $new_instance['word'] );
        return $instance;
    }
    /**
     * Displays the widget settings controls on the widget panel.
     * Make use of the get_field_id() and get_field_name() function
     * when creating your form elements. This handles the confusing stuff.
     */
    function form( $instance ) {
        /* Set up some default widget settings. */
        $defaults = array(
            'title' => '',
            'type' => 'true',
            'gs' => 'true',
            'auto'  => '',
            'url'   => '',
            'pic'   => '',
            'word'  => ''
        );
        $instance = wp_parse_args( (array) $instance, $defaults ); ?>
        <!-- widget title: -->
        <p>
            <label for="<?php echo $this->get_field_id( 'title' ); ?>">显示标题</label>
            <input type="text" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo $instance['title']; ?>" style="width:100%;" />
        </p>
        <p>
            <label for="<?php echo $this->get_field_id( 'type' ); ?>">自动播放</label>
            <select id="<?php echo $this->get_field_id( 'type' ); ?>" name="<?php echo $this->get_field_name( 'type' ); ?>" class="widefat" style="width:100%;">
                <option value="true" <?php if ( 'true' == $instance['type'] ) echo 'selected="selected"'; ?>>开启</option>
                <option value="false" <?php if ( 'false' == $instance['type'] ) echo 'selected="selected"'; ?>>关闭</option>
            </select>
        </p>
        <p>
            <label for="<?php echo $this->get_field_id( 'gs' );?>">开启歌词</label>
            <select id="<?php echo $this->get_field_id( 'gs' ); ?>" name="<?php echo $this->get_field_name( 'gs' ); ?>" class="widefat" style="width:100%;">
                <option value="true" <?php if ( 'true' == $instance['gs'] ) echo 'selected="selected"'; ?>>开启</option>
                <option value="false" <?php if ( 'false' == $instance['gs'] ) echo 'selected="selected"'; ?>>关闭</option>
            </select>
        </p>
        <p>
            <label for="<?php echo $this->get_field_id( 'auto' ); ?>">歌唱者</label>
            <input type="text" id="<?php echo $this->get_field_id( 'auto' ); ?>" name="<?php echo $this->get_field_name( 'auto' ); ?>" value="<?php echo $instance['auto']; ?>" style="width:100%;" />
        </p>
        <p>
            <label for="<?php echo $this->get_field_id( 'url' ); ?>">歌曲URL</label>
            <input type="text" id="<?php echo $this->get_field_id( 'url' ); ?>" name="<?php echo $this->get_field_name( 'url' ); ?>" value="<?php echo $instance['url']; ?>" style="width:100%;" />
        </p>
        <p>
            <label for="<?php echo $this->get_field_id( 'pic' ); ?>">歌曲封面</label>
            <input type="text" id="<?php echo $this->get_field_id( 'pic' ); ?>" name="<?php echo $this->get_field_name( 'pic' ); ?>" value="<?php echo $instance['pic']; ?>" style="width:100%;" />
        </p>
        <p>
            <label for="<?php echo $this->get_field_id( 'word' ); ?>">歌词</label>
            <input type="text" id="<?php echo $this->get_field_id( 'word' ); ?>" name="<?php echo $this->get_field_name( 'word' ); ?>" style="width:100%;" value="<?php echo $instance['word']; ?>" />
        </p>
        <?php
    }
    function showWidget($title,$type,$gs, $auto, $url, $pic, $word) {
        ?>
    <link href="<?php echo get_template_directory_uri().'/aplayer/APlayer.min.css'?>" rel="stylesheet">
    <script src="<?php echo get_template_directory_uri().'/aplayer/APlayer.min.js'?>"></script>
    <div class="widget-title"><?php echo $title ?></div>
        <div id="player1">
            <pre class="aplayer-lrc-content">
                <?php echo $word ?>
            </pre>
        </div>
    <script>
        var ap = new APlayer
                ({
                    element: document.getElementById('player1'),
                    narrow: false,
                    autoplay: <?php echo $type ?>,
                    showlrc: <?php echo $gs ?>,
                    music: {
                            title: '<?php echo $title ?>',
                            author: '<?php echo $auto ?>',
                            url: '<?php echo $url ?>',
                            pic: '<?php echo $pic ?>'
                            }
                });
        ap.init();
    </script>
    <?php }
}?>

其中这二句是引用了Aplayer的JS与CSS

1
2
<link href="<?php echo get_template_directory_uri().'/aplayer/APlayer.min.css'?>" rel="stylesheet">
<script src="<?php echo get_template_directory_uri().'/aplayer/APlayer.min.js'?>"></script>
这二句我是放在我的主题文件夹下的,你也可以直接引用官方的Aplayer的js与css

最后在function.php引用这个文件:widget-aplayer.php

include(TEMPLATEPATH。'/ template-parts / widget / widget-aplayer.php');

 

在后台外观-小工具中选择Aplayer播放器

制作widget小工具| 整合Aplayer.js音乐播放器到小工具–爱CSS-每多学一点知识就少写一行代码

这样一个小工具就做好了,可以放在侧边栏的任何位置,目前在设置歌曲的URL与封面时,都是手动粘地址,好想直接多媒体库中添加多好,暂时还不会怎么关联媒体库,有知道的肯请粘上代码。
标签: widget 小工具 音乐播放器
最后更新:2020-07-25

笨猫

这个人很懒,什么都没留下

点赞
< 上一篇
下一篇 >

文章评论

razz evil exclaim smile redface biggrin eek confused idea lol mad twisted rolleyes wink cool arrow neutral cry mrgreen drooling persevering
取消回复

最新 热点 随机
最新 热点 随机
Claude 2 镜像站上线了,依然免费 封神第一部:朝歌风云下载 扫描全能王APP v6.49.0.2309070000 破解版 🎁 [限免] 新作品“桌面计算器”正式发布啦!专为 iOS17 设计,无需打开,直接计算 倒数鸭 - 全新设计的倒数正数纪念日 app AI 套壳 APP,现已完全开源啦(APP+服务端)
Google Chrome v116.0.5845.180 Stable 绿色便携版AI 套壳 APP,现已完全开源啦(APP+服务端)GKD - 基于 无障碍 + 高级选择器 + 订阅规则 的自定义去广告APP【电影】八角笼中 (2023)最新下载,百度云盘,阿里云盘Cloudflare搭建DDNS(脚本版)倒数鸭 - 全新设计的倒数正数纪念日 app
2个闲置的年付VPS出了。剁手继续 好看簿——用照片和声音留存记忆分享生活 一款支持上传/删除等操作的PHP目录列表程序:Evoluted Directory Listing Tampermonkey:油猴脚本自动抢购斯巴达spartanhost vps 图床程序: CheveretoChina V4 发布! CentOS6 安装Google BBR算法
标签聚合
wordpress OneDrive 有趣 域名 VPS 日记 音乐 google
最近评论
黄金体验 发布于 1 周前(09月16日) 非常感谢,楼主推荐~
cc 发布于 2 周前(09月14日) 这个版本有没有修复,右上角升级提示??那个提示很烦
爱上发生的 发布于 2 周前(09月12日) 你好大
六先生 发布于 2 周前(09月10日) 看一看哈哈哈
磁力草 发布于 2 周前(09月09日) 请更新 磁力草:全网最大的磁力搜索引擎 主站:https://www.cilicao.cn/ ...
好友
  • glzjin's blog glzjin's blog
  • ZAERA博客
  • 冰沫记
  • 奇它博客
  • 猫腻‘s Blog
  • 猫饭
  • 肥宅之家
  • 萌博
  • 野路子程序员

COPYRIGHT © 2022 笨猫博客. ALL RIGHTS RESERVED.

Theme Kratos Made By Seaton Jiang